在Django教程中,我遇到了index.html文件的问题。 我无法处理此异常:
第14行的无效广告代码:'其他'。您是否忘记注册或加载此标记?
我的index.html是这样的:
{% if latest_questions %)
<ul>
{% for question in latest_questions %}
<li> <a href="/polls/{{question.id}}"><b>{{question.question_text}}</b></a></li>
{% endfor %}
</ul>
{% else %}
Something else.
{% endif %}
我真的不明白为什么它不能识别&#34;否则&#34;。
答案 0 :(得分:1)
问题在于您的if
代码。
替换:
% if latest_questions %)
使用:
{% if latest_questions %}