diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-06-12 20:55:20 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-06-12 20:55:20 +0200 |
commit | 8a8b9f5a0b174225230c2ddb2dc9a0cecb33208e (patch) | |
tree | c1ba1ed6f42be001dd19758b6fd2f10510538ad8 /hyperkitty/urls.py | |
parent | a195f1b150d2b17cdefd64038528b53035d585f7 (diff) | |
download | hyperkitty-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.py | 1 |
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'), |