Merge branch 'reflow'
[wolnelektury.git] / apps / funding / urls.py
diff --git a/apps/funding/urls.py b/apps/funding/urls.py
deleted file mode 100644 (file)
index 3e55ba4..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- coding: utf-8 -*-
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
-#
-from django.conf.urls import patterns, url, include
-
-from .models import Offer
-from .views import (WLFundView, OfferDetailView, OfferListView,
-                ThanksView, NoThanksView, CurrentView, DisableNotifications)
-
-
-urlpatterns = patterns('',
-
-    url(r'^$', CurrentView.as_view(), name='funding_current'),
-    url(r'^teraz/$', CurrentView.as_view()),
-    url(r'^teraz/(?P<slug>[^/]+)/$', CurrentView.as_view(), name='funding_current'),
-    url(r'^lektura/$', OfferListView.as_view(), name='funding'),
-    url(r'^lektura/(?P<slug>[^/]+)/$', 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')),
-)