summaryrefslogtreecommitdiffstats
path: root/ded/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-10-14 17:46:36 +0100
committerMatthew Lemon <y@yulqen.org>2024-10-14 17:46:36 +0100
commitbbdc85fbc53a914f9375aae0a9f3730a940ded95 (patch)
treea27c2f2ffc319eb91294d9409aa643e51aadd385 /ded/urls.py
parent95507940f12a0a62e2e207b02cecfca2c3c69418 (diff)
We have a basic SOP list view
- added the new url file - styled similar to EP list for organisation - uses a spanned row in the table for a description or summary of the document - TODO: update the model to use the summary row - TODO: add more metadata
Diffstat (limited to '')
-rw-r--r--ded/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ded/urls.py b/ded/urls.py
index 229fb29..3d7e36c 100644
--- a/ded/urls.py
+++ b/ded/urls.py
@@ -13,6 +13,7 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
+
from django.contrib import admin
from django.urls import include, path
@@ -20,6 +21,7 @@ urlpatterns = [
# path("__debug__", include("debug_toolbar.urls")),
path("accounts/", include("django.contrib.auth.urls")),
path("engagements/", include("engagements.urls")),
+ path("instruments/", include("instruments.urls")),
path("admin/", admin.site.urls),
path("", include("core.urls")),
]