如何在django块中包含模板标记

时间:2013-06-09 03:34:13

标签: django django-templates django-tables2

我使用django_tables2(http://django-tables2.readthedocs.org/en/latest/)进行HTML表格渲染,但我的模板无效:

{% extends 'base.html' %}
{% block main %}
    {% render_table table %} 
{% endblock %}

错误消息如下:

Invalid block tag: 'render_table', expected 'endblock'

还有以上tables2插件的替代品吗?

1 个答案:

答案 0 :(得分:9)

文档声明在加载任何内容之前必须包含以下声明:

{% load render_table from django_tables2 %}