diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-10 06:21:15 +0530 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-10 06:21:15 +0530 |
commit | e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262 (patch) | |
tree | 8dd57320e742394034515158c013915595877c1a /hyperkitty/urls.py | |
parent | 6da4589cf562033fba6e1f5d910a28dbe39dc313 (diff) | |
download | hyperkitty-e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262.tar.gz hyperkitty-e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262.tar.xz hyperkitty-e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262.zip |
Feature : Add tag to email threads
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 ### |