Mercurial > public > sg101
annotate donations/urls.py @ 1166:130ac1e98cf4
More V3 forums tweaking.
Adding attachments is working now.
Adding a post via ajax is working.
Still need to display attachments on posts.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 20 Aug 2017 15:55:54 -0500 |
parents | 75189bd9c4ba |
children |
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@35 | 5 |
bgneal@1028 | 6 import donations.views |
bgneal@1028 | 7 |
bgneal@1028 | 8 |
bgneal@1028 | 9 urlpatterns = [ |
bgneal@1028 | 10 url(r'^$', donations.views.index, name='donations-index'), |
bgneal@1028 | 11 url(r'^ipn/$', donations.views.ipn, name='donations-ipn'), |
bgneal@1079 | 12 url(r'^thanks/$', donations.views.ThanksView.as_view(), name='donations-thanks'), |
bgneal@1028 | 13 ] |