comparison gpp/forums/urls.py @ 111:e5faf9f0c11a

Forums: implemented the bulk moderator functions that operate on a forum: bulk sticky, lock, delete, and move. These haven't been tested that well yet.
author Brian Neal <bgneal@gmail.com>
date Mon, 28 Sep 2009 03:57:09 +0000
parents c329bfaed4a7
children d97ceb95ce02
comparison
equal deleted inserted replaced
110:c329bfaed4a7 111:e5faf9f0c11a
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/forum/(?P<slug>[\w\d-]+)/$', 'mod_forum', name='forums-mod_forum'),
15 url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'), 16 url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'),
16 url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'), 17 url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'),
17 url(r'^mod/topic/move/(\d+)/$', 'mod_topic_move', name='forums-mod_topic_move'), 18 url(r'^mod/topic/move/(\d+)/$', 'mod_topic_move', name='forums-mod_topic_move'),
18 url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'), 19 url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'),
19 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), 20 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'),