summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r--hyperkitty/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py
index 1a2e945..2ec92c9 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -43,7 +43,8 @@ urlpatterns = patterns('hyperkitty.views',
url(r'^$', 'pages.index', name='root'),
# Account
- url(r'^accounts/login/$', login_view, {'template_name': 'login.html', 'SSL': True}, name='user_login'),
+ #url(r'^accounts/login/$', login_view, {'template_name': 'login.html', 'SSL': True}, name='user_login'),
+ url(r'^accounts/login/$', 'accounts.login_view', {'template_name': 'login.html', 'SSL': True}, name='user_login'),
url(r'^accounts/logout/$', logout_view, {'next_page': '/'}, name='user_logout'),
url(r'^accounts/profile/$', 'accounts.user_profile', name='user_profile'),
url(r'^accounts/register/$', 'accounts.user_registration', {'SSL': True}, name='user_registration'),