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

10 lines
242 B
Python

"""Common URL patterns for application report."""
from django.urls import path
from report.views import common as views
app_name = 'report'
urlpatterns = [
path('<int:pk>/', views.ReportRetrieveView.as_view(), name='report-retrieve')
]