Mercurial > public > sg101
annotate smiley/urls.py @ 617:95a80c1fe87b
For BB issue 20, link to the member map from the forum index
text that says "our site has x members from around the world."
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 22 Sep 2012 11:10:31 -0500 |
parents | ee87ea74d46b |
children | 5ba2508939f7 |
rev | line source |
---|---|
bgneal@12 | 1 """ |
bgneal@12 | 2 Urls for the Smiley application. |
bgneal@12 | 3 """ |
bgneal@12 | 4 |
bgneal@574 | 5 from django.conf.urls import patterns, url |
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 ) |