summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-05-23 15:45:22 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-05-23 17:48:16 +0200
commitea032ba8b321fad5e896750eae508456676041c1 (patch)
tree026c8af089391ecddd9dcae5a05d5ee9e07ad3a0 /hyperkitty/urls.py
parente9e92bf1ac15421b9a29c366b9ef6bf2c1b94943 (diff)
downloadhyperkitty-ea032ba8b321fad5e896750eae508456676041c1.tar.gz
hyperkitty-ea032ba8b321fad5e896750eae508456676041c1.tar.xz
hyperkitty-ea032ba8b321fad5e896750eae508456676041c1.zip
Display the last viewed threads in the user profile
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r--hyperkitty/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py
index 6a332c3..8956c6e 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -45,6 +45,7 @@ urlpatterns = patterns('hyperkitty.views',
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/profile/last_views$', 'accounts.last_views', name='user_last_views'),
url(r'^accounts/register/$', 'accounts.user_registration', {'SSL': True}, name='user_registration'),