2020-10-03 23:27:41 +02:00
|
|
|
<select name="{{ widget.name }}"
|
2023-05-20 11:01:18 -04:00
|
|
|
{% include "django/forms/widgets/attrs.html" %}>
|
|
|
|
{% for group_name, group_choices, group_index in widget.optgroups %}
|
|
|
|
{% if group_name %}<optgroup label="{{ group_name }}">{% endif %}
|
|
|
|
{% for option in group_choices %}
|
|
|
|
{% include option.template_name with widget=option %}
|
|
|
|
{% endfor %}
|
|
|
|
{% if group_name %}</optgroup>{% endif %}
|
|
|
|
{% endfor %}
|
2020-10-03 23:27:41 +02:00
|
|
|
</select>
|
|
|
|
<script>
|
|
|
|
$('select[name="{{ widget.name }}"]').multipleSelect({
|
|
|
|
selectAll: false,
|
|
|
|
width: "100%",
|
|
|
|
displayTitle: true,
|
|
|
|
// any value greater than number of genres
|
|
|
|
minimumCountSelected: 50,
|
|
|
|
filter: true,
|
|
|
|
})
|
2023-05-20 11:01:18 -04:00
|
|
|
</script>
|