c930c60aa32d38921411faeeb8d83b9f594d3d74
[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                 FundingView)
10
11
12 urlpatterns = patterns('',
13     url(r'^$', OfferDetailView.as_view(), name='funding_current'),
14     url(r'^lektura/$', OfferListView.as_view(), name='funding'),
15     url(r'^lektura/(?P<slug>[^/]+)/$', OfferDetailView.as_view(), name='funding_offer'),
16     url(r'^wplata/(?P<pk>\d+)/$', FundingView.as_view(), name='funding_funding'),
17     url(r'^fundusz/$', WLFundView.as_view(), name='funding_wlfund'),
18     url(r'^getpaid/', include('getpaid.urls')),
19 )