Mercurial > public > sg101
annotate gpp/smiley/urls.py @ 532:ff67946fd4b0
For #242, move the updating of the POTD sequence into a new signals module.
When photos are deleted from the admin changelist in bulk, the individual
delete() functions on the photo objects is not called. However, the post_delete
signal is called for each object.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 25 Dec 2011 04:15:32 +0000 |
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 ) |