Skip to content
Snippets Groups Projects
Select Git revision
  • 2288c5f954d190e91f9f41a834f69d529d9aa443
  • main default protected
  • renovate/django-bootstrap5-25.x
  • renovate/django-debug-toolbar-6.x
  • renovate/jsonschema-4.x
  • renovate/django-5.x
  • koma/feature/preference-polling-form
7 results

0039_event_wiki_template_name.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    select.html 449 B
    <select name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %}
            class="select select-bordered w-full">
    	{% 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>