diff options
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r-- | hyperkitty/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py index ebf757a..a1a711a 100644 --- a/hyperkitty/urls.py +++ b/hyperkitty/urls.py @@ -59,7 +59,7 @@ urlpatterns = patterns('hyperkitty.views', ### MESSAGE LEVEL VIEWS ### # Vote a message url(r'^message/(?P<mlist_fqdn>.*@.*)/(?P<messageid>.+)/$', - 'message.index'), + 'message.index', name='message_index'), url(r'^vote/(?P<mlist_fqdn>.*@.*)/$', 'message.vote', name='message_vote'), @@ -74,7 +74,7 @@ urlpatterns = patterns('hyperkitty.views', # Add Tag to a thread url(r'^addtag/(?P<mlist_fqdn>.*@.*)\/(?P<email_id>.*)/$', - 'thread.add_tag'), + 'thread.add_tag', name='add_tag'), ### THREAD LEVEL VIEW ENDS ### |