comparison gpp/forums/urls.py @ 216:fe900598f81c

Implement #85 - display who has posted from a post's IP address.
author Brian Neal <bgneal@gmail.com>
date Sun, 30 May 2010 20:51:41 +0000
parents 8c1832b9d815
children a46788862737
comparison
equal deleted inserted replaced
215:8c1832b9d815 216:fe900598f81c
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'^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/ip/(\d+)/$', 'post_ip_info', name='forums-post_ip_info'),
24 url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), 25 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'), 26 url(r'^posts/(?P<username>[\w\d-]+)/$', 'posts_for_user', name='forums-posts_for_user'),
26 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), 27 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'),
27 url(r'^unanswered/$', 'unanswered_topics', name='forums-unanswered_topics'), 28 url(r'^unanswered/$', 'unanswered_topics', name='forums-unanswered_topics'),
28 url(r'^unread/$', 'unread_topics', name='forums-unread_topics'), 29 url(r'^unread/$', 'unread_topics', name='forums-unread_topics'),