我将表格定义如下
class MyTable(tables.Table):
class Meta:
template_name = "django_tables2/bootstrap4.html"
model = Mymodel
attrs = {"class": "table table-hover"}
我想更改表头以使其显示为浅灰色或深灰色like this。
答案 0 :(得分:0)
文档中没有明确说明,但是从它描述如何通过Table.Meta.attrs属性设置th
属性来判断,这是您的操作方式:
attrs = {
'class': 'table table-hover',
'thead' : {
'class': 'head-dark'
}
}
答案 1 :(得分:0)
尝试这个:
attrs = {
'class': 'table table-hover',
'thead' : {
'class': 'thead-dark'
}