1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from django.conf.urls import url, include
9 url(r'^$', views.CurrentView.as_view(), name='funding_current'),
10 url(r'^teraz/$', views.CurrentView.as_view()),
11 url(r'^teraz/(?P<slug>[^/]+)/$', views.CurrentView.as_view(), name='funding_current'),
12 url(r'^lektura/$', views.OfferListView.as_view(), name='funding'),
13 url(r'^lektura/(?P<slug>[^/]+)/$', views.OfferDetailView.as_view(), name='funding_offer'),
14 url(r'^pozostale/$', views.WLFundView.as_view(), name='funding_wlfund'),
16 url(r'^dziekujemy/$', views.ThanksView.as_view(), name='funding_thanks'),
17 url(r'^niepowodzenie/$', views.NoThanksView.as_view(), name='funding_nothanks'),
19 url(r'^wylacz_email/$', views.DisableNotifications.as_view(), name='funding_disable_notifications'),
21 url(r'^getpaid/', include('getpaid.urls')),