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",)