Mercurial > public > sg101
annotate gpp/smiley/urls.py @ 555:c094c43ec99f
Reinstalled my fork of elsewhere with pip install -e so that the repo URL is
remembered (otherwise it looks like I got it off PyPi). Updated the
requirements.txt file.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 26 Jan 2012 22:44:45 -0600 |
parents | 3ae999b0c53b |
children | ddd69a8e07c7 |
rev | line source |
---|---|
bgneal@12 | 1 """ |
bgneal@12 | 2 Urls for the Smiley application. |
bgneal@12 | 3 """ |
bgneal@12 | 4 |
bgneal@12 | 5 from django.conf.urls.defaults import * |
bgneal@12 | 6 |
bgneal@12 | 7 urlpatterns = patterns('smiley.views', |
bgneal@12 | 8 url(r'^farm/$', 'farm', name='smiley-farm'), |
bgneal@123 | 9 url(r'^farm/extra/$', 'farm', kwargs={'extra': True}, name='smiley-farm_extra'), |
bgneal@12 | 10 ) |