cmc-sales/cmc-django/cmcsales/cmc/templates/partials/customer_list.html
Karl Cordes 6ad0e74ad6 Add instructions to README for docker compose
add cmc-django
add finley to userpasswd
2025-06-03 07:28:32 +10:00

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 %}