view gpp/smiley/urls.py @ 250:29679b0b98ad

Some tweaks to the templates before the first beta. Hide the donations module for now.
author Brian Neal <bgneal@gmail.com>
date Sun, 19 Sep 2010 20:42:25 +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'),
)