comparison gpp/forums/urls.py @ 89:021492db4aad

Forums: Got the reply function working.
author Brian Neal <bgneal@gmail.com>
date Sat, 12 Sep 2009 21:29:31 +0000
parents 531fcc342a03
children 62af8cd8f57b
comparison
equal deleted inserted replaced
88:3abf0b045749 89:021492db4aad
7 url(r'^$', 'index', name='forums-index'), 7 url(r'^$', 'index', name='forums-index'),
8 url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'), 8 url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'),
9 url(r'^topic/(?P<id>\d+)/$', 'topic_index', name='forums-topic_index'), 9 url(r'^topic/(?P<id>\d+)/$', 'topic_index', name='forums-topic_index'),
10 url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'), 10 url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'),
11 url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'), 11 url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'),
12 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'),
12 ) 13 )
13 14