From 98df8ec176167800f759806095630d3904893901 Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 28 May 2026 23:23:52 +0100 Subject: [PATCH] remove case size from the table --- atlas/tables.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/atlas/tables.py b/atlas/tables.py index 016d54af..99e35e8c 100755 --- a/atlas/tables.py +++ b/atlas/tables.py @@ -160,10 +160,6 @@ class CaseTable(SelectionTable): return mark_safe(", ".join(links)) return "No collections" - def render_case_size(self, value, record): - value = record.get_total_series_images_size() - - return filesizeformat(value) associated_cases = tables.Column( verbose_name="Associated Cases", accessor="pk", orderable=False @@ -173,10 +169,6 @@ class CaseTable(SelectionTable): verbose_name="Collections", accessor="pk", orderable=False ) - case_size = tables.Column( - verbose_name="Case size", accessor="pk" - ) - edit = tables.LinkColumn( "atlas:case_update", text="Edit", args=[A("pk")], orderable=False )