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.

13 lines
475 B

<ul class="list-group">
{% for result in results %}
<li class="list-group-item">
<a href="#" hx-get="/database/select/{{ field_name }}/{{ result.id }}/{{ result|get_attr(returnAttr) }}"
hx-target="#{{ field_name }}"
hx-trigger="click"
hx-swap="innerHTML"
data-bs-dismiss="modal"
class="text-decoration-none">{{ result.name }}</a>
</li>
{% endfor %}
</ul>