X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/62d83af2cafb15b3940311cf305a30d489909d95..ea656434007c3ec64f0e583c65e177b08403c865:/apps/funding/urls.py diff --git a/apps/funding/urls.py b/apps/funding/urls.py index 7aed8dccf..c930c60aa 100755 --- a/apps/funding/urls.py +++ b/apps/funding/urls.py @@ -2,16 +2,18 @@ # 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.conf.urls import patterns, url, include from .models import Offer -from .views import WLFundView, OfferDetailView, ThanksView, OfferListView +from .views import (WLFundView, OfferDetailView, OfferListView, + FundingView) urlpatterns = patterns('', 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'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'), + url(r'^wplata/(?P\d+)/$', FundingView.as_view(), name='funding_funding'), url(r'^fundusz/$', WLFundView.as_view(), name='funding_wlfund'), + url(r'^getpaid/', include('getpaid.urls')), )