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 /instruments/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 'instruments/urls.py')
-rw-r--r-- | instruments/urls.py | 8 |
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"), +] |