Mercurial > public > sg101
diff gpp/shoutbox/urls.py @ 243:7ddd60164245
For #93: remove the page number from the URL. This commit fixes the shoutbox and member list. It also contains a change to downloads to add pagination to the new, popular, and highest rated views.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 16 Sep 2010 01:06:43 +0000 |
parents | 777451a98f9d |
children | ddd69a8e07c7 |
line wrap: on
line diff
--- a/gpp/shoutbox/urls.py Wed Sep 15 03:24:01 2010 +0000 +++ b/gpp/shoutbox/urls.py Thu Sep 16 01:06:43 2010 +0000 @@ -11,7 +11,5 @@ url(r'^shout/$', 'shout', name='shoutbox-shout'), url(r'^text/$', 'text', name='shoutbox-text'), url(r'^view/(\d+)/$', 'view_shout', name='shoutbox-view'), - url(r'^view/history/(?P<page>\d+)/$', 'view_history', name='shoutbox-history'), + url(r'^view/history/$', 'view_history', name='shoutbox-history'), ) - -# vim: ts=4 sw=4