comparison gpp/forums/urls.py @ 167:cf9f9d4c4d54

Adding a query to the forums to get all the topics with unread posts. This is for ticket #54.
author Brian Neal <bgneal@gmail.com>
date Sun, 24 Jan 2010 22:33:11 +0000
parents 0ce0104c7df3
children e6d4dfdfbc64
comparison
equal deleted inserted replaced
166:8acf5be27f18 167:cf9f9d4c4d54
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'^unread/$', 'unread_topics', name='forums-unread_topics'),
25 ) 26 )
26 27