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.
5 from django.conf.urls import patterns, url, include
7 from .models import Offer
8 from .views import (WLFundView, OfferDetailView, OfferListView,
9 ThanksView, NoThanksView, CurrentView)
12 urlpatterns = patterns('',
14 url(r'^$', CurrentView.as_view(), name='funding_current'),
15 url(r'^teraz/(?P<slug>[^/]+)/$', CurrentView.as_view(), name='funding_current'),
16 url(r'^lektura/$', OfferListView.as_view(), name='funding'),
17 url(r'^lektura/(?P<slug>[^/]+)/$', OfferDetailView.as_view(), name='funding_offer'),
18 url(r'^fundusz/$', WLFundView.as_view(), name='funding_wlfund'),
20 url(r'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'),
21 url(r'^niepowodzenie/$', NoThanksView.as_view(), name='funding_nothanks'),
23 url(r'^getpaid/', include('getpaid.urls')),