item.html.st
raw
<article hx-target="this" hx-swap="outerHTML" id="<%- id.to_string() %>" style="display: flex">
<form>
<input hx-put="/todo/<%- id.to_string() %>" name="done" value="true" type="checkbox" <% if item.done { %>checked<% } %>>
<input hx-put="/todo/<%- id.to_string() %>" hx-trigger="keyup changed delay:500ms" name="label" type="text" value="<%= item.label %>">
</form>
<a hx-delete="/todo/<%- id.to_string() %>" hx-confirm="Delete?" style="margin-left: auto; font-size: 32px; cursor: pointer">×</a>
</article>