我有几个表单字段,我需要格式化不同,并尝试使用IF
语句在呈现时查找字段,但似乎没有像文档建议的那样工作。
我想以不同方式格式化country
和state
,但代码并不像我尝试的那样。
{% for field in customerfields %}
{% if field.name != 'country' or 'state' %}
{{ field.label.upper }}
<div class="FormRow">
{{ field }}
</div>
{% else %}
<div class="FormRow">
<div class="StyledSelect">
{{ field }}
</div>
</div>
{% endif%}
{% endfor %}
如何搜索多个字段?有更好的方法吗?