comparison gpp/forums/urls.py @ 168:e6d4dfdfbc64

Implemented a view to display topics with unanswered posts. This is for ticket #54.
author Brian Neal <bgneal@gmail.com>
date Tue, 26 Jan 2010 04:10:11 +0000
parents cf9f9d4c4d54
children 7071b196ddd5
comparison
equal deleted inserted replaced
167:cf9f9d4c4d54 168:e6d4dfdfbc64
20 url(r'^mod/topic/split/(\d+)/$', 'mod_topic_split', name='forums-mod_topic_split'), 20 url(r'^mod/topic/split/(\d+)/$', 'mod_topic_split', name='forums-mod_topic_split'),
21 url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'), 21 url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'),
22 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), 22 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'),
23 url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), 23 url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'),
24 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), 24 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'),
25 url(r'^unanswered/$', 'unanswered_topics', name='forums-unanswered_topics'),
25 url(r'^unread/$', 'unread_topics', name='forums-unread_topics'), 26 url(r'^unread/$', 'unread_topics', name='forums-unread_topics'),
26 ) 27 )
27 28