X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6d7b11e4a01b2314c0527d94d91f3159c0bd34ce..bb22d24ba0e3d3681f78e9cadb1502dbc2ebdc1c:/apps/funding/urls.py diff --git a/apps/funding/urls.py b/apps/funding/urls.py old mode 100755 new mode 100644 index dc79f3130..e92704d71 --- a/apps/funding/urls.py +++ b/apps/funding/urls.py @@ -2,16 +2,23 @@ # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # -from django.conf.urls import patterns, url -from django.views.generic import ListView, FormView, TemplateView +from django.conf.urls import patterns, url, include from .models import Offer -from .views import WLFundView, OfferDetailView, ThanksView +from .views import (WLFundView, OfferDetailView, OfferListView, + ThanksView, NoThanksView, CurrentView) urlpatterns = patterns('', - url(r'^$', ListView.as_view(queryset=Offer.public()), name='funding'), + + 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'^pozostale/$', WLFundView.as_view(), name='funding_wlfund'), + url(r'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'), - url(r'^fundusz/$', WLFundView.as_view(), name='funding_wlfund'), + url(r'^niepowodzenie/$', NoThanksView.as_view(), name='funding_nothanks'), + + url(r'^getpaid/', include('getpaid.urls')), )