view gpp/contact/urls.py @ 306:6ca2c474d92f

Fixing #109; make forum links more prominent by underlining them by default.
author Brian Neal <bgneal@gmail.com>
date Sat, 15 Jan 2011 21:55:37 +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'),
)