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/templates/index.html | 4 ++-- hyperkitty/urls.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'hyperkitty') diff --git a/hyperkitty/templates/index.html b/hyperkitty/templates/index.html index 87ba148..3d312a4 100644 --- a/hyperkitty/templates/index.html +++ b/hyperkitty/templates/index.html @@ -8,8 +8,8 @@ {% for mlist in lists %} {{ mlist }} - Overview - Archives + Overview + Archives {% endfor %} 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