X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8d1372958ce4a205f11fcdd44cf6e9cac8429a69..e700d4711928fb211d7993d665379c24ea230d73:/apps/funding/urls.py?ds=inline diff --git a/apps/funding/urls.py b/apps/funding/urls.py index c712b5e08..6b60035c3 100755 --- a/apps/funding/urls.py +++ b/apps/funding/urls.py @@ -2,15 +2,21 @@ # 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 DetailView, ListView, FormView +from django.conf.urls import patterns, url, include from .models import Offer -from .views import WLFundView +from .views import (WLFundView, OfferDetailView, OfferListView, + ThanksView, NoThanksView) urlpatterns = patterns('', - url(r'^$', ListView.as_view(queryset=Offer.public()), name='funding'), - url(r'lektura/^(?P[^/]+)/$', DetailView.as_view(queryset=Offer.public()), name='funding_offer'), - url(r'fundusz/$', WLFundView.as_view(), name='funding_wlfund'), + url(r'^$', OfferDetailView.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'^fundusz/$', 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')), )