Mercurial > public > sg101
comparison gpp/forums/urls.py @ 108:80ab249d1adc
Forums: quoting existing posts.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 26 Sep 2009 03:55:50 +0000 |
parents | e94398f5e027 |
children | 07be3e39e639 |
comparison
equal
deleted
inserted
replaced
107:e94398f5e027 | 108:80ab249d1adc |
---|---|
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'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), | 15 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'), | |
16 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), | 17 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), |
17 ) | 18 ) |
18 | 19 |