view gpp/antispam/urls.py @ 363:9d470c7a2b93

Following up on #168; redo some code to make it more DRY. Added a function on the profile to reset the text fields.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 Mar 2011 04:03:30 +0000
parents 8c1832b9d815
children ddd69a8e07c7
line wrap: on
line source
"""URLs for the antispam application."""
from django.conf.urls.defaults import *

urlpatterns = patterns('antispam.views',
    url(r'^suspended/$', 'suspended', name='antispam-suspended'),
)