5 lines
237 B
HTML
5 lines
237 B
HTML
{% for customer in customers %}
|
|
<option value="{{ customer.id }}" hx-get="{% url 'load_contacts' %}?customer_id={{ customer.id }}" hx-target="#contact-select" hx-trigger="click">
|
|
{{ customer.name }}
|
|
</option>
|
|
{% endfor %} |