Fundraising in PDF.
[wolnelektury.git] / src / funding / urls.py
index 3aae4ea..c54f600 100644 (file)
@@ -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.urls import path, include
+from annoy.utils import banner_exempt
 from . import views
 
 
 urlpatterns = [
-    path('', views.CurrentView.as_view(), name='funding_current'),
-    path('teraz/', views.CurrentView.as_view()),
-    path('teraz/<slug:slug>/', views.CurrentView.as_view(), name='funding_current'),
-    path('lektura/', views.OfferListView.as_view(), name='funding'),
-    path('lektura/<slug:slug>/', views.OfferDetailView.as_view(), name='funding_offer'),
-    path('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/<slug:slug>/', banner_exempt(views.CurrentView.as_view()), name='funding_current'),
+    path('lektura/', banner_exempt(views.OfferListView.as_view()), name='funding'),
+    path('lektura/<slug:slug>/', banner_exempt(views.OfferDetailView.as_view()), name='funding_offer'),
+    path('pozostale/', banner_exempt(views.WLFundView.as_view()), name='funding_wlfund'),
 
-    path('dziekujemy/', views.ThanksView.as_view(), name='funding_thanks'),
-    path('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'),
 
-    path('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/<key>/', banner_exempt(views.claim), name='funding_claim'),
 
-    path('getpaid/', include('getpaid.urls')),
+    path('notify/<int:pk>/', views.PayUNotifyView.as_view(), name='funding_payu_notify'),
 ]