您好我在这个模板中使用django模板:
{% if material.unit =='U' %}
p/(u)
{% endif %}
{% if material.unit == 'M' %}
p/(m)
{% endif %}
我想打印p /(u)当变量material.unit是' U'和p /(m)何时是' M'。 这不能正常工作。给我这个错误:
Could not parse the remainder: '=='U'' from '=='U''
答案 0 :(得分:1)
在==
之后添加空格:
{% if material.unit == 'U' %}