How can I get django-tables2 CheckBoxColumn to honour the provided verbose_name?
If I define a CheckBoxColumn thus:
force_flag = tables.CheckBoxColumn(accessor=('force_flag'), attrs = { "th__input": {"id": "selectAllForce"}}, verbose_name='Force?', orderable=False)
the table is rendered but the column header is simply a checkbox and does not use the verbose_name.
This question has been asked previously but unless I do not fully understand the answer I cannot see that working. Reading the suggested code, I would imagine that this would add the string 'column Name' to each row data value.
Thanks in advance for any help with this.