X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/dac9a35e0d86c0ec50f33d69d73be5d7ae7ae7ef..99f6dd4f1ff0390de9a9bbd4e3352b953cb9a235:/apps/funding/urls.py diff --git a/apps/funding/urls.py b/apps/funding/urls.py index eb9718038..3e55ba4b4 100644 --- a/apps/funding/urls.py +++ b/apps/funding/urls.py @@ -6,19 +6,22 @@ from django.conf.urls import patterns, url, include from .models import Offer from .views import (WLFundView, OfferDetailView, OfferListView, - ThanksView, NoThanksView, CurrentView) + ThanksView, NoThanksView, CurrentView, DisableNotifications) urlpatterns = patterns('', 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'^fundusz/$', WLFundView.as_view(), name='funding_wlfund'), + url(r'^pozostale/$', WLFundView.as_view(), name='funding_wlfund'), url(r'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'), url(r'^niepowodzenie/$', NoThanksView.as_view(), name='funding_nothanks'), + + url(r'^wylacz_email/$', DisableNotifications.as_view(), name='funding_disable_notifications'), url(r'^getpaid/', include('getpaid.urls')), )