From f584ea07a3ca48f8f0d3c9125766711720f1e0aa Mon Sep 17 00:00:00 2001 From: Ross Date: Fri, 25 Apr 2025 18:05:07 +0100 Subject: [PATCH] add series to table --- atlas/tables.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/atlas/tables.py b/atlas/tables.py index 94ce192e..581c7c38 100755 --- a/atlas/tables.py +++ b/atlas/tables.py @@ -62,6 +62,7 @@ class CaseTable(tables.Table): #"history", #"condition", "created_date", + "series", "author", ) sequence = ("view", )#, "series") @@ -70,7 +71,7 @@ class CaseTable(tables.Table): def __init__(self, data=None, *args, **kwargs): super().__init__( data.prefetch_related( - "author",#"condition", "condition__synonym" + "author", "series",#"condition", "condition__synonym" ), *args, **kwargs,