X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9a5423b58158ae6d970cdd7a3dc25e5559aa374a..08433423130c027b64c87c13c1bb4d2390694263:/apps/funding/urls.py diff --git a/apps/funding/urls.py b/apps/funding/urls.py index f05bc1d86..2b8e5d672 100644 --- a/apps/funding/urls.py +++ b/apps/funding/urls.py @@ -4,7 +4,6 @@ # from django.conf.urls import patterns, url, include -from .models import Offer from .views import (WLFundView, OfferDetailView, OfferListView, ThanksView, NoThanksView, CurrentView, DisableNotifications) @@ -12,15 +11,16 @@ from .views import (WLFundView, OfferDetailView, OfferListView, 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'^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')), )