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