summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-06-12 20:55:20 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-06-12 20:55:20 +0200
commit8a8b9f5a0b174225230c2ddb2dc9a0cecb33208e (patch)
treec1ba1ed6f42be001dd19758b6fd2f10510538ad8 /hyperkitty/urls.py
parenta195f1b150d2b17cdefd64038528b53035d585f7 (diff)
downloadhyperkitty-8a8b9f5a0b174225230c2ddb2dc9a0cecb33208e.tar.gz
hyperkitty-8a8b9f5a0b174225230c2ddb2dc9a0cecb33208e.tar.xz
hyperkitty-8a8b9f5a0b174225230c2ddb2dc9a0cecb33208e.zip
Paginate the list of liked messages 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 b75632b..10143b1 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -46,6 +46,7 @@ urlpatterns = patterns('hyperkitty.views',
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/profile/votes$', 'accounts.votes', name='user_votes'),
url(r'^accounts/register/$', 'accounts.user_registration', {'SSL': True}, name='user_registration'),