This commit is contained in:
Ross
2021-02-14 18:07:33 +00:00
parent daf1bdf1d7
commit 61b9921702
+3 -1
View File
@@ -54,10 +54,12 @@ class LongTable(tables.Table):
)
series = LongImageColumn("Images", orderable=False)
#exams = tables.ManyToManyColumn(verbose_name="Exams")
class Meta:
model = Long
template_name = "django_tables2/bootstrap4.html"
fields = ("exam", "created_date", "author")
fields = ("exams", "created_date", "author")
sequence = ("view", "series")
class PopupLinkColumn(tables.Column):