summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-07-25 18:59:34 -0400
committerAamir Khan <syst3m.w0rm@gmail.com>2012-07-25 18:59:34 -0400
commit5209122f1de7a0185f2a6fd44e24ff2f4858883d (patch)
tree15e12f2231c712c6ad45953f11d0cf937bb38116 /hyperkitty/urls.py
parentc7178cfcc107c295398162bcf184d2421c5f92f8 (diff)
downloadhyperkitty-5209122f1de7a0185f2a6fd44e24ff2f4858883d.tar.gz
hyperkitty-5209122f1de7a0185f2a6fd44e24ff2f4858883d.tar.xz
hyperkitty-5209122f1de7a0185f2a6fd44e24ff2f4858883d.zip
Hard coded URLs fix on index page
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 d88887b..e8708d5 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -27,7 +27,7 @@ urlpatterns = patterns('hyperkitty.views',
url(r'^archives/(?P<mlist_fqdn>.*@.*)/(?P<year>\d{4})/(?P<month>\d\d?)/$',
'list.archives'),
url(r'^archives/(?P<mlist_fqdn>.*@.*)/$',
- 'list.archives'),
+ 'list.archives', name='archives'),
# Threads
url(r'^thread/(?P<mlist_fqdn>.*@.*)/(?P<threadid>.+)/$',
@@ -37,7 +37,7 @@ urlpatterns = patterns('hyperkitty.views',
# Lists
url(r'^list/$', 'pages.index'), # Can I remove this URL?
url(r'^list/(?P<mlist_fqdn>.*@.*)/$',
- 'list.list'),
+ 'list.list', name='list_overview'),
# Search Tag
url(r'^tag/(?P<mlist_fqdn>.*@.*)\/(?P<tag>.*)\/(?P<page>\d+)/$',