Mercurial > public > sg101
comparison gpp/forums/urls.py @ 109:07be3e39e639
Forums: implemented topic level moderator controls.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 26 Sep 2009 18:03:57 +0000 |
parents | 80ab249d1adc |
children | c329bfaed4a7 |
comparison
equal
deleted
inserted
replaced
108:80ab249d1adc | 109:07be3e39e639 |
---|---|
10 url(r'^delete-post/$', 'delete_post', name='forums-delete_post'), | 10 url(r'^delete-post/$', 'delete_post', name='forums-delete_post'), |
11 url(r'^edit/(?P<id>\d+)/$', 'edit_post', name='forums-edit_post'), | 11 url(r'^edit/(?P<id>\d+)/$', 'edit_post', name='forums-edit_post'), |
12 url(r'^flag-post/$', 'flag_post', name='forums-flag_post'), | 12 url(r'^flag-post/$', 'flag_post', name='forums-flag_post'), |
13 url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'), | 13 url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'), |
14 url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'), | 14 url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'), |
15 url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'), | |
16 url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'), | |
17 url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'), | |
15 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), | 18 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), |
16 url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), | 19 url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), |
17 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), | 20 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), |
18 ) | 21 ) |
19 | 22 |