annotate donations/urls.py @ 1040:15f2585ae9a4

Update copyright for 2016.
author Brian Neal <bgneal@gmail.com>
date Fri, 15 Jan 2016 21:14:14 -0600
parents 5ba2508939f7
children 75189bd9c4ba
rev   line source
bgneal@35 1 """
bgneal@35 2 URLs for the donations application.
bgneal@35 3 """
bgneal@1028 4 from django.conf.urls import url
bgneal@311 5 from django.views.generic import TemplateView
bgneal@35 6
bgneal@1028 7 import donations.views
bgneal@1028 8
bgneal@1028 9
bgneal@1028 10 urlpatterns = [
bgneal@1028 11 url(r'^$', donations.views.index, name='donations-index'),
bgneal@1028 12 url(r'^ipn/$', donations.views.ipn, name='donations-ipn'),
bgneal@311 13 url(r'^thanks/$', TemplateView.as_view(template_name='donations/thanks.html'),
bgneal@311 14 name='donations-thanks'),
bgneal@1028 15 ]