diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-15 16:28:41 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-15 16:28:41 +0100 |
commit | cf0ceb545421c58acc9478fc376b51065f97e532 (patch) | |
tree | 26ab2b9eebd6b03febec1bdb498742c50c8b7253 /pyblackbird_cc/resources/urls.py | |
parent | 8d1f465ceb2f5e357b19b6e4c8468703725b4795 (diff) |
Basic form to update Resource metadata
Diffstat (limited to 'pyblackbird_cc/resources/urls.py')
-rw-r--r-- | pyblackbird_cc/resources/urls.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/urls.py b/pyblackbird_cc/resources/urls.py index 30c5f99..86b3f4d 100644 --- a/pyblackbird_cc/resources/urls.py +++ b/pyblackbird_cc/resources/urls.py @@ -7,6 +7,11 @@ urlpatterns = [ path("", views.index, name="index"), path("create/", views.create_resource, name="create_resource"), path("resource/<int:resource_id>", views.resource_detail, name="resource_detail"), + path( + "resource/update-metadata/<int:pk>", + views.update_resource_metadata, + name="resource_update_metadata", + ), ] htmx_patterns = [ |