From ad4b06d691bc9cfccf1aff431132f5ff3e753563 Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 1 Nov 2025 13:16:55 +0000 Subject: [PATCH] Remove row-selector class from QuestionTable attributes for improved styling --- sbas/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbas/tables.py b/sbas/tables.py index a77911b5..c21d8dae 100644 --- a/sbas/tables.py +++ b/sbas/tables.py @@ -53,7 +53,7 @@ class QuestionTable(tables.Table): "edit" ) sequence = ("view", "stem", "answers")#, "exams") - attrs = {"class": "table row-selector"} + attrs = {"class": "table"} order_by = "-created_date" def __init__(self, data=None, *args, **kwargs):