flask:模板用extends扩充页面内容
一,代码:
base模板:
common/mainbase.html
{% include 'common/header.html' %}
<h1>{{ meta.title }}</h1>
{% block listcontent %}
{% endblock %}
{% include 'common/footer.html' %}
子模板:
user/list.html
把base模板中定义的block填充上内容即可
{% extends 'common/mainbase.html' %}
{% block listcontent %}
<ul>
{% for user in users %}
<li>{{ user.name }} - {{ user.age }} - {{ user.city }}</li>
{% endfor %}
</ul>
{% endblock %}
二,运行效果 :

浙公网安备 33010602011771号