comparison gpp/forums/urls.py @ 169:7071b196ddd5

Implement #54; add a forum query to display a user's posts.
author Brian Neal <bgneal@gmail.com>
date Sun, 31 Jan 2010 04:52:08 +0000
parents e6d4dfdfbc64
children 0fa78ef80356
comparison
equal deleted inserted replaced
168:e6d4dfdfbc64 169:7071b196ddd5
17 url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'), 17 url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'),
18 url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'), 18 url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'),
19 url(r'^mod/topic/move/(\d+)/$', 'mod_topic_move', name='forums-mod_topic_move'), 19 url(r'^mod/topic/move/(\d+)/$', 'mod_topic_move', name='forums-mod_topic_move'),
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'^my-posts/$', 'my_posts', name='forums-my_posts'),
22 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), 23 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'), 24 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'), 25 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'),
25 url(r'^unanswered/$', 'unanswered_topics', name='forums-unanswered_topics'), 26 url(r'^unanswered/$', 'unanswered_topics', name='forums-unanswered_topics'),
26 url(r'^unread/$', 'unread_topics', name='forums-unread_topics'), 27 url(r'^unread/$', 'unread_topics', name='forums-unread_topics'),