X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6d42bc478e3d1bd90eb294464748c21e4de0fc63..18aa8ca52202003e5628a882f3469a04d905cc05:/src/reporting/urls.py diff --git a/src/reporting/urls.py b/src/reporting/urls.py old mode 100755 new mode 100644 index fa7ceb28d..1177517a5 --- a/src/reporting/urls.py +++ b/src/reporting/urls.py @@ -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'), ]