我有一个django表声明如下:
class BookTable(tables.Table):
user= tables.TemplateColumn("""{% include 'books/user.html' with user=record.created_by %}""")
books= tables.TemplateColumn(
""" {% if record.g_books.count %}
<div class="panel-body">
{% include 'books/details/detail.html' with book=record %}
</div>
{% else %}
No New Books
{% endif %}
<div>
</div>
""")
actions = tables.TemplateColumn("""{% include 'books/action.html' with book=record %}""")
我想对订单和某些字段样式进行更改,并且我只想呈现一个对user
,books
和actions
字段进行分组的字段。
这可能是django-tables2
,或者这样做不好吗?
django-tables2
的新内容,欢迎任何建议
感谢。