如何更改bootstrap4标头django-tables2

时间:2019-01-18 01:35:11

标签: django django-tables2

我将表格定义如下

class MyTable(tables.Table):
    class Meta:
        template_name = "django_tables2/bootstrap4.html"
        model = Mymodel
        attrs = {"class": "table table-hover"}

我想更改表头以使其显示为浅灰色或深灰色like this

2 个答案:

答案 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'
        }