X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ea656434007c3ec64f0e583c65e177b08403c865..bb22d24ba0e3d3681f78e9cadb1502dbc2ebdc1c:/apps/funding/urls.py diff --git a/apps/funding/urls.py b/apps/funding/urls.py old mode 100755 new mode 100644 index c930c60aa..e92704d71 --- a/apps/funding/urls.py +++ b/apps/funding/urls.py @@ -6,14 +6,19 @@ from django.conf.urls import patterns, url, include from .models import Offer from .views import (WLFundView, OfferDetailView, OfferListView, - FundingView) + ThanksView, NoThanksView, CurrentView) urlpatterns = patterns('', - url(r'^$', OfferDetailView.as_view(), name='funding_current'), + + url(r'^$', CurrentView.as_view(), name='funding_current'), + url(r'^teraz/(?P[^/]+)/$', CurrentView.as_view(), name='funding_current'), url(r'^lektura/$', OfferListView.as_view(), name='funding'), url(r'^lektura/(?P[^/]+)/$', OfferDetailView.as_view(), name='funding_offer'), - url(r'^wplata/(?P\d+)/$', FundingView.as_view(), name='funding_funding'), - url(r'^fundusz/$', WLFundView.as_view(), name='funding_wlfund'), + url(r'^pozostale/$', WLFundView.as_view(), name='funding_wlfund'), + + url(r'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'), + url(r'^niepowodzenie/$', NoThanksView.as_view(), name='funding_nothanks'), + url(r'^getpaid/', include('getpaid.urls')), )