Mercurial > public > sg101
annotate antispam/urls.py @ 582:392fd36360c6
Added a requirements_dev.txt file since with Python 2.7 we no longer
need the importlib.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 May 2012 17:28:29 -0500 |
parents | ee87ea74d46b |
children | 5ba2508939f7 |
rev | line source |
---|---|
bgneal@215 | 1 """URLs for the antispam application.""" |
bgneal@574 | 2 from django.conf.urls import patterns, url |
bgneal@215 | 3 |
bgneal@215 | 4 urlpatterns = patterns('antispam.views', |
bgneal@215 | 5 url(r'^suspended/$', 'suspended', name='antispam-suspended'), |
bgneal@215 | 6 ) |