Fundraising in PDF.
[wolnelektury.git] / src / reporting / urls.py
old mode 100755 (executable)
new mode 100644 (file)
index fa7ceb2..1177517
@@ -1,12 +1,12 @@
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
 #
-from django.conf.urls import url
+from django.urls import path
 from . import views
 
 
 urlpatterns = [
-    url(r'^$', views.stats_page, name='reporting_stats'),
-    url(r'^katalog.pdf$', views.catalogue_pdf, name='reporting_catalogue_pdf'),
-    url(r'^katalog.csv$', views.catalogue_csv, name='reporting_catalogue_csv'),
+    path('', views.stats_page, name='reporting_stats'),
+    path('katalog.pdf', views.catalogue_pdf, name='reporting_catalogue_pdf'),
+    path('katalog.csv', views.catalogue_csv, name='reporting_catalogue_csv'),
 ]