From 57c2a54bc3ca7ecabbc55774664951c07fdd410f Mon Sep 17 00:00:00 2001 From: aastabk Date: Thu, 17 Jul 2025 14:46:42 +0200 Subject: [PATCH] Sample list does no longer show guid or plate position, but shows location --- src/staff/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/staff/tables.py b/src/staff/tables.py index 3bef4381..f41149b4 100644 --- a/src/staff/tables.py +++ b/src/staff/tables.py @@ -305,7 +305,7 @@ def render_checked(self, record: Any) -> str: class OrderExtractionSampleTable(SampleBaseTable): class Meta(SampleBaseTable.Meta): - exclude = ("pop_id", "location") + exclude = ("pop_id", "guid", "plate_positions") class OrderAnalysisSampleTable(tables.Table):