feat(tasks): Add task overview page with active, completed, and failed task summaries

This commit is contained in:
Ross
2026-05-17 14:30:38 +01:00
parent bbf7542451
commit ab9847e22e
4 changed files with 288 additions and 8 deletions
+1
View File
@@ -552,6 +552,7 @@ urlpatterns = [
path("structure/create", views.StructureCreate.as_view(), name="structure_create"),
path("series/<int:pk>/thumbnail/fail", views.series_thumbnail_fail, name="series_thumbnail_fail"),
path("series/<int:pk>/thumbnail", views.series_thumbnail, name="series_thumbnail"),
path("tasks/overview/", views.task_overview, name="task_overview"),
# TODO: case context series viewing (so that we can view series in the context of a case)
path("series/<int:pk>", views.series_detail, name="series_detail"),
path("series/<int:pk>/viewer", views.series_viewer, name="series_viewer"),