diff options
author | Matthew Lemon <y@yulqen.org> | 2024-10-14 17:46:36 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-10-14 17:46:36 +0100 |
commit | bbdc85fbc53a914f9375aae0a9f3730a940ded95 (patch) | |
tree | a27c2f2ffc319eb91294d9409aa643e51aadd385 /ded/urls.py | |
parent | 95507940f12a0a62e2e207b02cecfca2c3c69418 (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.py | 2 |
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")), ] |