diff options
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'), |