我有一个带有以下db.Model的附加应用程序:
class Cinema(db.Model):
name = db.StringProperty()
address = db.StringProperty()
distance = db.IntegerProperty()
user = db.ReferenceProperty(RunningUser)
当我填写我的模板时,每件事都可以正常工作:
{% for cinema in cinemas %}
<tr>
<td><img src="/images/cinema.png"></td>
<td>
<a href="...">
<h2>{{cinema.name}}</h2>
</a>
{{cinema.address}}
</td>
<td>
{% if cinema.distance > 10000 %}
<p>red</p>
{% endif %}
</td>
</tr>
{% endfor %}
除了if语句。 Python引发了TemplateSyntaxError: 'if' statement improperly formatted exception
。据Django说它应该没问题。那么这三条线有什么问题呢?
{% if cinema.distance > 10000 %}
<p>red</p>
{% endif %}
答案 0 :(得分:1)
试试这个:
{% if cinema.distance > 10000 %}
<p>red</p>
{% endif %}
来自:https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#id3