我正在浏览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代码?