1 2 3 4 5 6 7 8 9
from django.urls import path from ctrack.compliance.views import overview app_name = "compliance" urlpatterns = [ path("overview", overview, name="overview") ]