diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-21 09:59:30 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-21 09:59:30 +0100 |
commit | 89da43fb56d036dc11420c9f7246c19854512517 (patch) | |
tree | 8440746edfb7120d31cd3655bd2d582df22ba75d /config/urls.py | |
parent | 3a4073a6f6d4c6d03f2464120d7d8a6fdbed42b1 (diff) |
first stab at a new compliance app for doing overview view and later audit and inspection stuff
Diffstat (limited to 'config/urls.py')
-rw-r--r-- | config/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/urls.py b/config/urls.py index f282893..f05a09b 100644 --- a/config/urls.py +++ b/config/urls.py @@ -10,6 +10,7 @@ admin.site.site_header = "ctrack admin" urlpatterns = [ path("", include("ctrack.core.urls", namespace="core")), + path("compliance/", include("ctrack.compliance.urls", namespace="compliance")), path( "about/", TemplateView.as_view(template_name="pages/about.html"), name="about" ), |