Mercurial > public > sg101
view gpp/smiley/urls.py @ 409:c374bfd5594f
Fixing #177; added a view to display the last x active topics (where x is between 10 and 50). Added a link to the view on the forum query drop down.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 02 Apr 2011 00:47:05 +0000 |
parents | 3ae999b0c53b |
children | ddd69a8e07c7 |
line wrap: on
line source
""" Urls for the Smiley application. """ from django.conf.urls.defaults import * urlpatterns = patterns('smiley.views', url(r'^farm/$', 'farm', name='smiley-farm'), url(r'^farm/extra/$', 'farm', kwargs={'extra': True}, name='smiley-farm_extra'), )