【发布时间】:2018-04-17 23:07:28
【问题描述】:
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href=“{% url ‘polls:detail’ question.id %}”>{{ question.question_text }}</a></li>
{% end for %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
无法弄清楚出了什么问题。感觉可能是空间。需要帮助,请。
【问题讨论】:
标签: django-templates