X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/575e58df64c98b53edca9fb6a29b284dbc375609..ae60b2a3949e96357477cc04f90fd0873cee8a92:/apps/funding/urls.py diff --git a/apps/funding/urls.py b/apps/funding/urls.py deleted file mode 100755 index dc79f3130..000000000 --- a/apps/funding/urls.py +++ /dev/null @@ -1,17 +0,0 @@ -# -*- coding: utf-8 -*- -# 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 .models import Offer -from .views import WLFundView, OfferDetailView, ThanksView - - -urlpatterns = patterns('', - url(r'^$', ListView.as_view(queryset=Offer.public()), name='funding'), - url(r'^lektura/(?P[^/]+)/$', OfferDetailView.as_view(), name='funding_offer'), - url(r'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'), - url(r'^fundusz/$', WLFundView.as_view(), name='funding_wlfund'), -)