Update QuestionTable sequence to include title for improved data representation

This commit is contained in:
Ross
2025-10-20 13:05:07 +01:00
parent aac4146b7f
commit 4a3a089941
+1 -1
View File
@@ -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):