aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/compliance/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-21 09:59:30 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-21 09:59:30 +0100
commit89da43fb56d036dc11420c9f7246c19854512517 (patch)
tree8440746edfb7120d31cd3655bd2d582df22ba75d /ctrack/compliance/urls.py
parent3a4073a6f6d4c6d03f2464120d7d8a6fdbed42b1 (diff)
first stab at a new compliance app for doing overview view and later audit and inspection stuff
Diffstat (limited to '')
-rw-r--r--ctrack/compliance/urls.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/ctrack/compliance/urls.py b/ctrack/compliance/urls.py
new file mode 100644
index 0000000..29c13ff
--- /dev/null
+++ b/ctrack/compliance/urls.py
@@ -0,0 +1,9 @@
+from django.urls import path
+
+from ctrack.compliance.views import overview
+
+app_name = "compliance"
+
+urlpatterns = [
+ path("overview", overview, name="overview")
+]