From 5209122f1de7a0185f2a6fd44e24ff2f4858883d Mon Sep 17 00:00:00 2001 From: Aamir Khan Date: Wed, 25 Jul 2012 18:59:34 -0400 Subject: Hard coded URLs fix on index page --- 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 d88887b..e8708d5 100644 --- a/hyperkitty/urls.py +++ b/hyperkitty/urls.py @@ -27,7 +27,7 @@ urlpatterns = patterns('hyperkitty.views', url(r'^archives/(?P.*@.*)/(?P\d{4})/(?P\d\d?)/$', 'list.archives'), url(r'^archives/(?P.*@.*)/$', - 'list.archives'), + 'list.archives', name='archives'), # Threads url(r'^thread/(?P.*@.*)/(?P.+)/$', @@ -37,7 +37,7 @@ urlpatterns = patterns('hyperkitty.views', # Lists url(r'^list/$', 'pages.index'), # Can I remove this URL? url(r'^list/(?P.*@.*)/$', - 'list.list'), + 'list.list', name='list_overview'), # Search Tag url(r'^tag/(?P.*@.*)\/(?P.*)\/(?P\d+)/$', -- cgit