django-tables2 列右对齐

django-tables2 column right justify

我正在使用 django-tables2 来显示包含整数值的 table,并且想知道如何右对齐该列。

tables.py里面有parameter/attr吗?

显示内容如下:

生成的 html 中的所有 tdth 元素都将列名作为 class 属性。这样您就可以轻松地引用 CSS.

中的列

此外,您可以通过将关键字参数 attrs 传递给 Column 的定义来为 thtd 单元格元素提供属性,如 docs:

class SimpleTable(tables.Table):
    name = tables.Column(
        attrs={
            "th": {"id": "foo"},
            "td": {"align": "right"}
        }
    )

此列的thtd 元素将如下所示:

<th id="foo" class="name"> ... </th>
<td align="right" class="name"> ... </td>