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)
 
  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'^fundusz/$', WLFundView.as_view(), name='funding_wlfund'),
 
  18     url(r'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'),
 
  19     url(r'^niepowodzenie/$', NoThanksView.as_view(), name='funding_nothanks'),
 
  21     url(r'^getpaid/', include('getpaid.urls')),