X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ae60b2a3949e96357477cc04f90fd0873cee8a92..HEAD:/src/funding/urls.py diff --git a/src/funding/urls.py b/src/funding/urls.py index 1f0d494eb..c54f600f6 100644 --- a/src/funding/urls.py +++ b/src/funding/urls.py @@ -1,34 +1,24 @@ -# -*- 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. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # -from django.conf.urls import patterns, url, include +from django.urls import path, include +from annoy.utils import banner_exempt +from . import views -from .views import WLFundView, OfferDetailView, OfferListView, ThanksView, NoThanksView, CurrentView, \ - DisableNotifications +urlpatterns = [ + path('', banner_exempt(views.CurrentView.as_view()), name='funding_current'), + path('teraz/', banner_exempt(views.CurrentView.as_view())), + path('teraz//', banner_exempt(views.CurrentView.as_view()), name='funding_current'), + path('lektura/', banner_exempt(views.OfferListView.as_view()), name='funding'), + path('lektura//', banner_exempt(views.OfferDetailView.as_view()), name='funding_offer'), + path('pozostale/', banner_exempt(views.WLFundView.as_view()), name='funding_wlfund'), -urlpatterns = patterns( - 'funding.views', - url(r'^$', CurrentView.as_view(), name='funding_current'), - url(r'^teraz/$', CurrentView.as_view()), - 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'), + path('dziekujemy/', banner_exempt(views.ThanksView.as_view()), name='funding_thanks'), + path('niepowodzenie/', banner_exempt(views.NoThanksView.as_view()), name='funding_nothanks'), - url(r'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'), - url(r'^niepowodzenie/$', NoThanksView.as_view(), name='funding_nothanks'), + path('wylacz_email/', banner_exempt(views.DisableNotifications.as_view()), name='funding_disable_notifications'), + path('przylacz//', banner_exempt(views.claim), name='funding_claim'), - url(r'^wylacz_email/$', DisableNotifications.as_view(), name='funding_disable_notifications'), - - url(r'^getpaid/', include('getpaid.urls')), - - # Includes - url(r'^o/(?P\d+)/top-bar\.(?P.+)\.html$', 'top_bar', name='funding_top_bar'), - url(r'^o/(?P\d+)/detail-bar\.(?P.+)\.html$', 'detail_bar', name='funding_detail_bar'), - url(r'^o/(?P\d+)/list-bar\.(?P.+)\.html$', 'list_bar', name='funding_list_bar'), - url(r'^o/(?P\d+)/status\.(?P.+)\.html$', 'offer_status', name='funding_status'), - url(r'^o/(?P\d+)/status-more\.(?P.+)\.html$', 'offer_status_more', name='funding_status_more'), - url(r'^o/(?P\d+)/fundings/(?P\d+)\.(?P.+)\.html$', 'offer_fundings', name='funding_fundings'), -) + path('notify//', views.PayUNotifyView.as_view(), name='funding_payu_notify'), +]