Merge branch 'master' into rwd
[wolnelektury.git] / apps / funding / urls.py
1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from django.conf.urls import patterns, url, include
6
7 from .models import Offer
8 from .views import (WLFundView, OfferDetailView, OfferListView,
9                 ThanksView, NoThanksView, CurrentView, DisableNotifications)
10
11
12 urlpatterns = patterns('',
13
14     url(r'^$', CurrentView.as_view(), name='funding_current'),
15     url(r'^teraz/$', CurrentView.as_view()),
16     url(r'^teraz/(?P<slug>[^/]+)/$', CurrentView.as_view(), name='funding_current'),
17     url(r'^lektura/$', OfferListView.as_view(), name='funding'),
18     url(r'^lektura/(?P<slug>[^/]+)/$', OfferDetailView.as_view(), name='funding_offer'),
19     url(r'^pozostale/$', WLFundView.as_view(), name='funding_wlfund'),
20     
21     url(r'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'),
22     url(r'^niepowodzenie/$', NoThanksView.as_view(), name='funding_nothanks'),
23
24     url(r'^wylacz_email/$', DisableNotifications.as_view(), name='funding_disable_notifications'),
25     
26     url(r'^getpaid/', include('getpaid.urls')),
27 )