django模板中的{%%}标签

时间:2016-07-24 09:27:21

标签: python-3.x django-templates

我正在浏览django文档,并在模板中找到了这段代码,

{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
    <li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
    <p>No polls are available.</p>
{% endif %}

有人可以解释一下{% %}标签的含义。它是否像php中的<? ?>标签,如果是这样,为什么不添加单个标签并打印其余的html代码?

0 个答案:

没有答案