答案 0 :(得分:1)
如果register_as_translator_form.languages
返回字符串列表,可能会发生这种情况,请尝试这种方式:
<select name="from[]" id="multiselect" class="form-control" size="8" multiple="multiple">
{% for choice in register_as_translator_form.languages %}
<option value="{{ choice }}">{{ choice }}</option>
{% endfor %}
</select>