Mercurial > public > sg101
view gpp/smiley/urls.py @ 498:b137a0966e4b
Removed the warning about AT&T and sbcglobal on the registration page. Added "text" classes to the registration text widgets.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 24 Nov 2011 21:27:07 +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'), )