Mercurial > public > sg101
diff 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 |
line wrap: on
line diff
--- a/gpp/forums/urls.py Sat May 29 04:51:28 2010 +0000 +++ b/gpp/forums/urls.py Sun May 30 20:51:41 2010 +0000 @@ -21,6 +21,7 @@ url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'), url(r'^my-posts/$', 'my_posts', name='forums-my_posts'), url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), + url(r'^post/ip/(\d+)/$', 'post_ip_info', name='forums-post_ip_info'), url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), url(r'^posts/(?P<username>[\w\d-]+)/$', 'posts_for_user', name='forums-posts_for_user'), url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'),