gpt4 book ai didi

python - 模板语法错误 : 'if' statement improperly formatted

转载 作者:太空狗 更新时间:2023-10-30 02:06:15 25 4
gpt4 key购买 nike

    {% for frequency in patient_meds.frequency %}
{% if frequency == "7" %}
<td>Hellow</td>
{% endif %}
{% endfor%}

获取错误

TemplateSyntaxError: 'if' 语句格式不正确

我不知道我必须做什么,请帮助我......

最佳答案

如果您使用的是应用引擎 (v0.96) 附带的默认 Django 版本,请尝试以下语法:

{% for frequency in patient_meds.frequency %}
{% ifequal frequency "7" %}
<td>Hellow</td>
{% endif %}
{% endfor%}

关于python - 模板语法错误 : 'if' statement improperly formatted,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4898999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com