summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-06-19 18:28:04 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-06-19 18:28:04 +0200
commit6ada7fb3f6842998e274d06900d353142992c622 (patch)
tree183ced94d8f30f007b2672de0fc1e5133d51c945 /hyperkitty/urls.py
parent72f2e6b28475b4615f4c3fabc3b5788b441a3c55 (diff)
downloadhyperkitty-6ada7fb3f6842998e274d06900d353142992c622.tar.gz
hyperkitty-6ada7fb3f6842998e274d06900d353142992c622.tar.xz
hyperkitty-6ada7fb3f6842998e274d06900d353142992c622.zip
Add an autocomplete widget on the add_tag box
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r--hyperkitty/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py
index 2689413..9277922 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -79,6 +79,8 @@ urlpatterns = patterns('hyperkitty.views',
'thread.replies', name='thread_replies'),
url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/thread/(?P<threadid>\w+)/tags$',
'thread.tags', name='tags'),
+ url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/thread/(?P<threadid>\w+)/suggest-tags$',
+ 'thread.suggest_tags', name='suggest_tags'),
url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/thread/(?P<threadid>\w+)/favorite$',
'thread.favorite', name='favorite'),