summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-08-10 04:43:20 +0530
committerAamir Khan <syst3m.w0rm@gmail.com>2012-08-10 04:43:20 +0530
commit24bdfc8bc396078d7143857c6ac5a42f6939a852 (patch)
tree2de8240a25172470d30875477feff455b4d9cc58 /hyperkitty/urls.py
parent11d4a50b856ef2735452576d3ee431051f6b54a9 (diff)
downloadhyperkitty-24bdfc8bc396078d7143857c6ac5a42f6939a852.tar.gz
hyperkitty-24bdfc8bc396078d7143857c6ac5a42f6939a852.tar.xz
hyperkitty-24bdfc8bc396078d7143857c6ac5a42f6939a852.zip
Issues #18: Fix broken links because URLs were hard coded
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r--hyperkitty/urls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py
index f680716..ebf757a 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -19,7 +19,7 @@ urlpatterns = patterns('hyperkitty.views',
# Index
url(r'^/$', 'pages.index', name='index'),
- url(r'^$', 'pages.index', name='index'),
+ url(r'^$', 'pages.index'),
# Archives
url(r'^archives/(?P<mlist_fqdn>.*@.*)/(?P<year>\d{4})/(?P<month>\d\d?)/(?P<day>\d\d?)/$',
@@ -62,7 +62,7 @@ urlpatterns = patterns('hyperkitty.views',
'message.index'),
url(r'^vote/(?P<mlist_fqdn>.*@.*)/$',
- 'message.vote'),
+ 'message.vote', name='message_vote'),
### MESSAGE LEVEL VIEW ENDS ###
@@ -70,7 +70,7 @@ urlpatterns = patterns('hyperkitty.views',
### THREAD LEVEL VIEWS ###
# Thread view page
url(r'^thread/(?P<mlist_fqdn>.*@.*)/(?P<threadid>.+)/$',
- 'thread.thread_index'),
+ 'thread.thread_index', name='thread_index'),
# Add Tag to a thread
url(r'^addtag/(?P<mlist_fqdn>.*@.*)\/(?P<email_id>.*)/$',