From 2ca2ea29831a9952d7db0c9fae36a7f964704219 Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 4 Dec 2021 23:21:12 +0000 Subject: [PATCH] . --- atlas/tables.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/atlas/tables.py b/atlas/tables.py index 99bdba18..31a847e1 100755 --- a/atlas/tables.py +++ b/atlas/tables.py @@ -116,10 +116,12 @@ class SeriesTable(tables.Table): ) selection = tables.CheckBoxColumn(accessor="pk", orderable=False) + cases = tables.ManyToManyColumn(verbose_name="Cases") + class Meta: model = Series template_name = "django_tables2/bootstrap4.html" - fields = ("modality", "examination", "atlas", "description", "author") + fields = ("modality", "examination", "description", "author") sequence = ("view", "popup", "images") def render_popup(self, value, record):