Mercurial > public > sg101
view gpp/smiley/urls.py @ 337:b4f0980506e0 rollout
Working around a strange CSS problem when bulletins are active. This should probably be investigated later.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 26 Feb 2011 06:46:28 +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'), )