1#!/usr/bin/env python3
 2
 3"""Standard Django file mapping url strings to view functions."""
 4
 5from django.urls import path
 6from django.views.generic import TemplateView
 7
 8import chart.reports.views
 9
10app_name = 'reports'
11
12urlpatterns = [
13    # Report templates
14    path('',
15        chart.reports.views.index,
16        name='index'),
17]