From e754d8d8edd33017935c8345305d939e8f6fdf2a Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 8 Feb 2021 11:49:02 +0000 Subject: [PATCH] . --- anatomy/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anatomy/tables.py b/anatomy/tables.py index 181be430..da63eb33 100644 --- a/anatomy/tables.py +++ b/anatomy/tables.py @@ -13,7 +13,7 @@ from easy_thumbnails.exceptions import InvalidImageFormatError class AnatomyUserAnswerTable(tables.Table): - select = tables.CheckBoxColumn(accessor=("pk")) + select = tables.CheckBoxColumn(text="Select", accessor=("pk")) delete = tables.LinkColumn( "anatomy:anatomy_user_answer_delete", text="Delete", args=[A("pk")], orderable=False )