From 4a3a089941edaa37fadcb12d8e0538c2918c74de Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 20 Oct 2025 13:05:07 +0100 Subject: [PATCH] Update QuestionTable sequence to include title for improved data representation --- sbas/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbas/tables.py b/sbas/tables.py index b142d16b..78b1f106 100644 --- a/sbas/tables.py +++ b/sbas/tables.py @@ -39,7 +39,7 @@ class QuestionTable(tables.Table): "category", "author", ) - sequence = ("view", "stem", "answers")#, "exams") + sequence = ("view","title", "stem", "answers")#, "exams") attrs = {"class": "table row-selector"} def __init__(self, data=None, *args, **kwargs):