comparison gpp/forums/urls.py @ 172:0fa78ef80356

Implementing #55 - Add function to view a users posts from their profile.
author Brian Neal <bgneal@gmail.com>
date Sun, 28 Feb 2010 22:20:15 +0000
parents 7071b196ddd5
children 500e5875a306
comparison
equal deleted inserted replaced
171:b1766b1bda45 172:0fa78ef80356
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'^my-posts/$', 'my_posts', name='forums-my_posts'),
23 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), 23 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'),
24 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'),
25 url(r'^posts/(?P<username>[\w\d-]+)/$', 'posts_for_user', name='forums-posts_for_user'),
25 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), 26 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'),
26 url(r'^unanswered/$', 'unanswered_topics', name='forums-unanswered_topics'), 27 url(r'^unanswered/$', 'unanswered_topics', name='forums-unanswered_topics'),
27 url(r'^unread/$', 'unread_topics', name='forums-unread_topics'), 28 url(r'^unread/$', 'unread_topics', name='forums-unread_topics'),
28 ) 29 )
29 30