You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
830 B
17 lines
830 B
{% if item.type in ['SelectField'] %}
|
|
{{ item.label(class=theme.form.select_label_class, style=theme.form.select_label_style) }}
|
|
{% if item.render_kw['custom_option'] == 'search_field' %}
|
|
<div class="input-group">
|
|
{{ item(class=theme.form.select_class, type=theme.form.select_type, style=theme.form.select_style)}}
|
|
<button class="btn btn-outline-secondary" type="button" data-bs-toggle="modal" data-bs-target="#{{ item.name }}SearchModal">Search</button>
|
|
</div>
|
|
{% include 'htmx/popup.html' %}
|
|
{% else %}
|
|
{% if item.errors %}
|
|
{% include 'form/formError.html' %}
|
|
{% else %}
|
|
{{ item(class=theme.form.select_class, type=theme.form.select_type, style=theme.form.select_style)}}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|