view contact/urls.py @ 774:2f2292cb29aa

Backed out changeset c95431e7555c. The Day We Fight back is over, so no need for the script.
author Brian Neal <bgneal@gmail.com>
date Wed, 12 Feb 2014 18:47:59 -0600
parents ee87ea74d46b
children 38db6ec61af3
line wrap: on
line source
"""urls for the contact application"""
from django.conf.urls import patterns, url

urlpatterns = patterns('contact.views',
   url(r'^$', 'contact_form', name='contact-form'),
   (r'^thanks/$', 'contact_thanks'),
)