forked from CGM_Public/pretix_original
Use Select2 for subevent and other long selections (#763)
* Use Select2 for subevent and other long selections * Minor correction
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
{% load i18n %}
|
||||
<select name="{{ widget.name }}"{% 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 %}
|
||||
</select>
|
||||
<noscript>
|
||||
<div class="alert alert-danger">
|
||||
{% trans "Please enable JavaScript in your browser." %}
|
||||
</div>
|
||||
</noscript>
|
||||
Reference in New Issue
Block a user