From eb519163e655b67de7be1e179b066abfac2ed8cf Mon Sep 17 00:00:00 2001 From: Ross Date: Tue, 7 Dec 2021 12:00:42 +0000 Subject: [PATCH] . --- atlas/tables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atlas/tables.py b/atlas/tables.py index 363fdffa..26aaa639 100755 --- a/atlas/tables.py +++ b/atlas/tables.py @@ -256,7 +256,7 @@ class PresentationTable(tables.Table): class Meta: model = Presentation template_name = "django_tables2/bootstrap4.html" - fields = () + fields = ("name",) sequence = ("name",) @@ -277,5 +277,5 @@ class PathologicalProcessTable(tables.Table): class Meta: model = PathalogicalProcess template_name = "django_tables2/bootstrap4.html" - fields = () + fields = ("name",) sequence = ("name",)