使用jinja2
{% include %}指令。
{% extends 'template.html' %}{% block content %} {% if task == 'content1' %} {% include 'content1.html' %} {% endif %} {% if task == 'content2' %} {% include 'content2.html' %} {% endif %}{% endblock %}
这将包括来自正确内容文件的内容。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)