feat: Implement series splitting by DICOM tag with HTMX support

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Ross
2026-04-30 21:46:36 +01:00
co-authored by Copilot
parent 2aff9516ac
commit ab7dcaed76
4 changed files with 122 additions and 1 deletions
+5
View File
@@ -614,6 +614,11 @@ urlpatterns = [
views.series_order_upload_filename,
name="series_order_upload_filename",
),
path(
"series/<int:pk>/split_by_tag",
views.series_split_by_tag,
name="series_split_by_tag",
),
path(
"series/<int:pk>/delete",
views.SeriesDelete.as_view(),