Mercurial > public > sg101
view gpp/contact/urls.py @ 340:2541d27ca056
Fix #153. Update verbiage on the donations thanks template to meet Paypal guidelines for making it a auto-return page.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 27 Feb 2011 00:28:20 +0000 |
parents | dbd703f7d63a |
children | ddd69a8e07c7 |
line wrap: on
line source
"""urls for the contact application""" from django.conf.urls.defaults import * urlpatterns = patterns('contact.views', url(r'^$', 'contact_form', name='contact-form'), (r'^thanks/$', 'contact_thanks'), )