如何使用django仅显示某些选项并选择?

时间:2019-05-03 09:41:28

标签: javascript python html django python-3.x

您好,我在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>

有一个“可用”的选项,但我不想看到此选项...我该怎么做?

非常感谢您!

1 个答案:

答案 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>