summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r--hyperkitty/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py
index ab2719e..3340971 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -51,9 +51,9 @@ urlpatterns = patterns('hyperkitty.views',
'list.search_keyword'),
# Show the first page as default when no page number is present in URL
url(r'^search/(?P<mlist_fqdn>.*@.*)\/(?P<target>.*)\/(?P<keyword>.*)/$',
- 'list.search_keyword'),
+ 'list.search_keyword', name="search_keyword"),
url(r'^search/(?P<mlist_fqdn>.*@.*)/$',
- 'list.search'),
+ 'list.search', name="search_list"),
### MESSAGE LEVEL VIEWS ###