Mercurial > public > sg101
annotate gpp/potd/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 | 7b6540b185d9 |
children | ddd69a8e07c7 |
rev | line source |
---|---|
gremmie@1 | 1 """ |
gremmie@1 | 2 URLs for the POTD application. |
gremmie@1 | 3 """ |
gremmie@1 | 4 from django.conf.urls.defaults import * |
gremmie@1 | 5 |
gremmie@1 | 6 urlpatterns = patterns('potd.views', |
gremmie@1 | 7 url(r'^$', 'view', name='potd-view'), |
bgneal@14 | 8 url(r'^archive/(\d+)/$', 'archive', name='potd-archive'), |
gremmie@1 | 9 ) |