您好,我在HTML文件中使用Django编写了此代码:
<select class="form-control" data-formsource="test" id="id_test1" name="type">
{% for x,y in opt %}
<option value="{{ y }}" data-select="{{ y }}">{% trans y %}</option>
{% endfor %}
</select>
有一个“可用”的选项,但我不想看到此选项...我该怎么做?
非常感谢您!
答案 0 :(得分:0)
<select class="form-control" data-formsource="test" id="id_test1" name="type">
{% for x,y in opt %}
{% if x != 'available' %}
<option value="{{ y }}" data-select="{{ y }}">{% trans y %}</option>
{% endif %}
{% endfor %}
</select>