fnp
/
cas.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Don't choke on bad input lines in ssh reporting.
[cas.git]
/
src
/
accounts
/
urls.py
diff --git
a/src/accounts/urls.py
b/src/accounts/urls.py
index
6a18733
..
7584fc1
100644
(file)
--- a/
src/accounts/urls.py
+++ b/
src/accounts/urls.py
@@
-1,9
+1,7
@@
-# -*- coding: utf-8 -*-
from django.conf.urls import url
from . import views
from django.conf.urls import url
from . import views
+
urlpatterns = [
urlpatterns = [
- url(r'^$', views.account_profile),
- url(r'^change_profile$', views.account_change_basic_profile),
- url(r'^change_password$', views.account_change_password),
+ url(r'^$', views.ProfileView.as_view(), name='accounts_profile'),
]
]