X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/75957f735219259d3b4bc361f80ccd3d7b92a0e9..HEAD:/src/funding/urls.py diff --git a/src/funding/urls.py b/src/funding/urls.py index 986c4f039..c54f600f6 100644 --- a/src/funding/urls.py +++ b/src/funding/urls.py @@ -1,22 +1,24 @@ -# 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 url, include +from django.urls import path, include +from annoy.utils import banner_exempt from . import views urlpatterns = [ - url(r'^$', views.CurrentView.as_view(), name='funding_current'), - url(r'^teraz/$', views.CurrentView.as_view()), - url(r'^teraz/(?P[^/]+)/$', views.CurrentView.as_view(), name='funding_current'), - url(r'^lektura/$', views.OfferListView.as_view(), name='funding'), - url(r'^lektura/(?P[^/]+)/$', views.OfferDetailView.as_view(), name='funding_offer'), - url(r'^pozostale/$', views.WLFundView.as_view(), name='funding_wlfund'), + 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'), - url(r'^dziekujemy/$', views.ThanksView.as_view(), name='funding_thanks'), - url(r'^niepowodzenie/$', views.NoThanksView.as_view(), name='funding_nothanks'), + path('dziekujemy/', banner_exempt(views.ThanksView.as_view()), name='funding_thanks'), + path('niepowodzenie/', banner_exempt(views.NoThanksView.as_view()), name='funding_nothanks'), - url(r'^wylacz_email/$', views.DisableNotifications.as_view(), name='funding_disable_notifications'), + path('wylacz_email/', banner_exempt(views.DisableNotifications.as_view()), name='funding_disable_notifications'), + path('przylacz//', banner_exempt(views.claim), name='funding_claim'), - url(r'^getpaid/', include('getpaid.urls')), + path('notify//', views.PayUNotifyView.as_view(), name='funding_payu_notify'), ]