From 824735a7557801381ec34c303059282cc275dd77 Mon Sep 17 00:00:00 2001 From: Ross Date: Fri, 26 Feb 2021 15:35:09 +0000 Subject: [PATCH] . --- rapids/tables.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rapids/tables.py b/rapids/tables.py index 59efa961..6ef2f1f8 100755 --- a/rapids/tables.py +++ b/rapids/tables.py @@ -44,6 +44,8 @@ class RapidTable(tables.Table): orderable=False) images = ImageColumn("images", orderable=False) + exams = tables.ManyToManyColumn(verbose_name="Exams") + selection = tables.CheckBoxColumn(accessor="pk", orderable=False) class Meta: @@ -53,4 +55,4 @@ class RapidTable(tables.Table): "laterality", #"site", "created_date", "author") - sequence = ("view", "images") \ No newline at end of file + sequence = ("view", "images", "exams") \ No newline at end of file