34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<li>
|
|
<form method="post" action="/clothing/{% if let Some(id) = id %}{{ id }}{% else %}new{% endif %}">
|
|
<div class="level">
|
|
<div class="level-left">
|
|
<div class="level-item">
|
|
<input class="input" type="text" {{ name|insert_value }} />
|
|
</div>
|
|
|
|
<div class="level-item buttons are-small">
|
|
<button class="button">
|
|
<svg class="icon">
|
|
<use href="/static/feather-sprite.svg#check-circle" />
|
|
</svg>
|
|
</button>
|
|
{% if let Some(id) = id %}
|
|
<button class="button" type="button" hx-get="/clothing/{{ id }}" hx-swap="outerHTML"
|
|
hx-target="closest li">
|
|
<svg class="icon">
|
|
<use href="/static/feather-sprite.svg#x-circle" />
|
|
</svg>
|
|
</button>
|
|
{% else %}
|
|
<button class="button" type="button" _="on click remove the closest <li/>">
|
|
<svg class="icon">
|
|
<use href="/static/feather-sprite.svg#x-circle" />
|
|
</svg>
|
|
</button>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</li>
|