diff gpp/forums/urls.py @ 85:531fcc342a03

Forums: put the forum indices under the url forums/forum to avoid clashing with other functions. Modified the forum index template to have a link to the topic creator's profile.
author Brian Neal <bgneal@gmail.com>
date Sun, 30 Aug 2009 19:58:42 +0000
parents 5b4c812b448e
children 021492db4aad
line wrap: on
line diff
--- a/gpp/forums/urls.py	Sat Aug 29 22:01:40 2009 +0000
+++ b/gpp/forums/urls.py	Sun Aug 30 19:58:42 2009 +0000
@@ -7,7 +7,7 @@
     url(r'^$', 'index', name='forums-index'),
     url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'),
     url(r'^topic/(?P<id>\d+)/$', 'topic_index', name='forums-topic_index'),
-    url(r'^(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'),
-    url(r'^(?P<slug>[\w\d-]+)/topic/$', 'new_topic', name='forums-new_topic'),
+    url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'),
+    url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'),
 )