Mercurial > public > sg101
view contact/urls.py @ 697:67f8d49a9377
Cleaned up the code a bit.
Separated the S3 stuff out into its own class.
This class maybe should be in core.
Still want to do some kind of context manager around the temporary file we are
creating to ensure it gets deleted.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 08 Sep 2013 21:02:58 -0500 |
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'), )