mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
15 lines
523 B
HTML
15 lines
523 B
HTML
<ul class="manage-needs-list">
|
|
{% for need in contact.needs %}
|
|
<li id="contact-need-{{ need.id }}">
|
|
<strong>{{ need.name }}</strong>
|
|
{% if need.description %}<span> - {{ need.description }}</span>{% endif %}
|
|
<button class="btn btn-small btn-danger"
|
|
hx-delete="/api/contacts/{{ contact.id }}/needs/{{ need.id }}"
|
|
hx-target="#contact-need-{{ need.id }}"
|
|
hx-swap="outerHTML">
|
|
Remove
|
|
</button>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|