From 56d884568d52d42c6a18905fb7b2f004b1a6b296 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Thu, 13 Jun 2013 15:50:12 +0200 Subject: A user can remove the tags he added --- 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 10143b1..2689413 100644 --- a/hyperkitty/urls.py +++ b/hyperkitty/urls.py @@ -77,8 +77,8 @@ urlpatterns = patterns('hyperkitty.views', 'thread.thread_index', name='thread'), url(r'^list/(?P[^/@]+@[^/@]+)/thread/(?P\w+)/replies$', 'thread.replies', name='thread_replies'), - url(r'^list/(?P[^/@]+@[^/@]+)/thread/(?P\w+)/addtag$', - 'thread.add_tag', name='add_tag'), + url(r'^list/(?P[^/@]+@[^/@]+)/thread/(?P\w+)/tags$', + 'thread.tags', name='tags'), url(r'^list/(?P[^/@]+@[^/@]+)/thread/(?P\w+)/favorite$', 'thread.favorite', name='favorite'), -- cgit