diff --git a/sbas/tables.py b/sbas/tables.py
index f64c048a..1427eeb8 100644
--- a/sbas/tables.py
+++ b/sbas/tables.py
@@ -24,6 +24,10 @@ class QuestionTable(tables.Table):
stem = tables.Column()
answers = tables.TemplateColumn("
- {{ record.a_answer|safe}}
- {{ record.b_answer|safe}}
- {{ record.c_answer|safe}}
- {{ record.d_answer|safe}}
- {{ record.e_answer|safe}}
")
+ edit = tables.LinkColumn(
+ "sbas:question_update", text="Edit", args=[A("pk")], orderable=False
+ )
+
class Meta:
model = Question
template_name = "django_tables2/bootstrap4.html"
@@ -38,6 +42,7 @@ class QuestionTable(tables.Table):
"created_date",
"category",
"author",
+ "edit"
)
sequence = ("view", "stem", "answers")#, "exams")
attrs = {"class": "table row-selector"}