BrainMinder/assets/templates/quickbox/add.tmpl
2024-12-16 17:55:33 +01:00

9 lines
648 B
Cheetah

{{define "quickbox:add"}}
<div id="quicknote-{{.quicknote.Id}}" class="quickbox-row">
<div class="buttons">
<button class="button" hx-delete="/quickbox/delete/{{.quicknote.Id}}" hx-target="closest div.quickbox-row" hx-swap="outerHTML swap:1s" hx-trigger='confirmed' onClick="bm_show_confirm_delete(this, 'Quickbox', 'Delete this note ?')"><i class="bi bi-dash-square"></i></button>
<button class="button" hx-target="body" hx-swap="beforeend" hx-get="/quickbox/transform/{{.quicknote.Id}}"><i class='bi bi-arrow-up-left-circle-fill'></i></button>
</div>
<div class="w3-rest">{{.quicknote.Note_rendered | safeHTML}}</div>
</div>
{{end}}