Mercurial > public > sg101
diff gpp/forums/urls.py @ 167:cf9f9d4c4d54
Adding a query to the forums to get all the topics with unread posts. This is for ticket #54.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 24 Jan 2010 22:33:11 +0000 |
parents | 0ce0104c7df3 |
children | e6d4dfdfbc64 |
line wrap: on
line diff
--- a/gpp/forums/urls.py Sun Jan 17 20:24:01 2010 +0000 +++ b/gpp/forums/urls.py Sun Jan 24 22:33:11 2010 +0000 @@ -22,5 +22,6 @@ url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), + url(r'^unread/$', 'unread_topics', name='forums-unread_topics'), )