From e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262 Mon Sep 17 00:00:00 2001 From: Aamir Khan Date: Fri, 10 Aug 2012 06:21:15 +0530 Subject: Feature : Add tag to email threads --- hyperkitty/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hyperkitty/urls.py') 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.*@.*)/(?P.+)/$', - 'message.index'), + 'message.index', name='message_index'), url(r'^vote/(?P.*@.*)/$', 'message.vote', name='message_vote'), @@ -74,7 +74,7 @@ urlpatterns = patterns('hyperkitty.views', # Add Tag to a thread url(r'^addtag/(?P.*@.*)\/(?P.*)/$', - 'thread.add_tag'), + 'thread.add_tag', name='add_tag'), ### THREAD LEVEL VIEW ENDS ### -- cgit