Mercurial > public > sg101
diff gpp/forums/urls.py @ 382:a1b03de20345
Fixing #185; add a global forums catchup button.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 09 Mar 2011 02:39:24 +0000 |
parents | dd673fae508d |
children | c374bfd5594f |
line wrap: on
line diff
--- a/gpp/forums/urls.py Wed Mar 09 01:50:13 2011 +0000 +++ b/gpp/forums/urls.py Wed Mar 09 02:39:24 2011 +0000 @@ -5,6 +5,7 @@ urlpatterns = patterns('forums.views.main', url(r'^$', 'index', name='forums-index'), + url(r'^catchup/$', 'catchup_all', name='forums-catchup_all'), url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'), url(r'^topic/(?P<id>\d+)/$', 'topic_index', name='forums-topic_index'), url(r'^topic/(?P<id>\d+)/unread/$', 'topic_unread', name='forums-topic_unread'),