X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ae60b2a3949e96357477cc04f90fd0873cee8a92..HEAD:/src/reporting/urls.py diff --git a/src/reporting/urls.py b/src/reporting/urls.py old mode 100755 new mode 100644 index 3b09f1152..1177517a5 --- a/src/reporting/urls.py +++ b/src/reporting/urls.py @@ -1,13 +1,12 @@ -# -*- coding: utf-8 -*- -# 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 patterns, url +from django.urls import path +from . import views -urlpatterns = patterns( - 'reporting.views', - url(r'^$', 'stats_page', name='reporting_stats'), - url(r'^katalog.pdf$', 'catalogue_pdf', name='reporting_catalogue_pdf'), - url(r'^katalog.csv$', 'catalogue_csv', name='reporting_catalogue_csv'), -) +urlpatterns = [ + 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'), +]