如何将django-tables2的许多字段合二为一?

时间:2017-12-20 10:36:54

标签: python django django-tables2

我有一个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 %}""")

我想对订单和某些字段样式进行更改,并且我只想呈现一个对userbooksactions字段进行分组的字段。

这可能是django-tables2,或者这样做不好吗?

django-tables2的新内容,欢迎任何建议

感谢。

0 个答案:

没有答案