gault-millau/apps/report/urls/back.py
2020-02-05 16:46:30 +03:00

11 lines
243 B
Python

"""Back office URL patterns for application report."""
from django.urls import path
from report.views import back as views
app_name = 'report'
urlpatterns = [
path('', views.ReportListCreateView.as_view(), name='report-list-create'),
]