summaryrefslogtreecommitdiffstats
path: root/instruments/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 /instruments/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 'instruments/urls.py')
-rw-r--r--instruments/urls.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/instruments/urls.py b/instruments/urls.py
new file mode 100644
index 0000000..4358f91
--- /dev/null
+++ b/instruments/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path
+
+from . import views
+
+app_name = "instruments"
+urlpatterns = [
+ path("sops", views.SOPListView.as_view(), name="sop-list"),
+]