summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-08-09 19:33:34 +0530
committerAamir Khan <syst3m.w0rm@gmail.com>2012-08-09 19:33:34 +0530
commit74444def1e1d726b8415b2b8b7f0915cde48ff8f (patch)
treee00bc5e97e56db91168d64c9c3bbfdeebbf9b35c /hyperkitty/urls.py
parent3b7438fd3ad38b8ae60369d9dcfa0bbb626fd6a5 (diff)
downloadhyperkitty-74444def1e1d726b8415b2b8b7f0915cde48ff8f.tar.gz
hyperkitty-74444def1e1d726b8415b2b8b7f0915cde48ff8f.tar.xz
hyperkitty-74444def1e1d726b8415b2b8b7f0915cde48ff8f.zip
Issues #18: Fix broken links because URLs were hard coded
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 e8708d5..84948ed 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -23,9 +23,9 @@ urlpatterns = patterns('hyperkitty.views',
# Archives
url(r'^archives/(?P<mlist_fqdn>.*@.*)/(?P<year>\d{4})/(?P<month>\d\d?)/(?P<day>\d\d?)/$',
- 'list.archives'),
+ 'list.archives', name='archives_with_day'),
url(r'^archives/(?P<mlist_fqdn>.*@.*)/(?P<year>\d{4})/(?P<month>\d\d?)/$',
- 'list.archives'),
+ 'list.archives', name='archives_with_month'),
url(r'^archives/(?P<mlist_fqdn>.*@.*)/$',
'list.archives', name='archives'),