Django使用base.html,但表格无法显示

时间:2017-05-04 03:24:41

标签: django templates

  

wanip.html

enter image description here

  

base.html文件

enter image description here

wanip.html中使用base.html,无法显示表格。我可以使用{{1}}吗?

1 个答案:

答案 0 :(得分:1)

您应该在base.html中创建阻止并在wanip.html中覆盖该阻止。 仅供参考。

base.html文件

    <html>
    <head>
    ....
    </head>
    <body>
    ....
    {% block content %}
    ....
    {% endblock content %}
    ....
    </body>
    </html>

而wanip.html就像

{% extends "base.html" %}
{% block content %}
{{block.super}}
<table>...</table>
{% endblock content %}