Mercurial > public > sg101
comparison gpp/forums/urls.py @ 529:7388cdf61b25
For #241, add a URL to view the last post in a forum topic.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 22 Dec 2011 02:10:27 +0000 |
parents | c374bfd5594f |
children | ddd69a8e07c7 |
comparison
equal
deleted
inserted
replaced
528:311c926dd218 | 529:7388cdf61b25 |
---|---|
7 url(r'^$', 'index', name='forums-index'), | 7 url(r'^$', 'index', name='forums-index'), |
8 url(r'^catchup/$', 'catchup_all', name='forums-catchup_all'), | 8 url(r'^catchup/$', 'catchup_all', name='forums-catchup_all'), |
9 url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'), | 9 url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'), |
10 url(r'^topic/(?P<id>\d+)/$', 'topic_index', name='forums-topic_index'), | 10 url(r'^topic/(?P<id>\d+)/$', 'topic_index', name='forums-topic_index'), |
11 url(r'^topic/(?P<id>\d+)/unread/$', 'topic_unread', name='forums-topic_unread'), | 11 url(r'^topic/(?P<id>\d+)/unread/$', 'topic_unread', name='forums-topic_unread'), |
12 url(r'^topic/(?P<id>\d+)/latest/$', 'topic_latest', name='forums-topic_latest'), | |
12 url(r'^topic/active/(\d+)/$', 'active_topics', name='forums-active_topics'), | 13 url(r'^topic/active/(\d+)/$', 'active_topics', name='forums-active_topics'), |
13 url(r'^delete-post/$', 'delete_post', name='forums-delete_post'), | 14 url(r'^delete-post/$', 'delete_post', name='forums-delete_post'), |
14 url(r'^edit/(?P<id>\d+)/$', 'edit_post', name='forums-edit_post'), | 15 url(r'^edit/(?P<id>\d+)/$', 'edit_post', name='forums-edit_post'), |
15 url(r'^flag-post/$', 'flag_post', name='forums-flag_post'), | 16 url(r'^flag-post/$', 'flag_post', name='forums-flag_post'), |
16 url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'), | 17 url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'), |