2024-08-22 10:13:16 +02:00
|
|
|
{{define "quickbox:add"}}
|
2024-12-16 17:55:33 +01:00
|
|
|
<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>
|
2024-08-22 10:13:16 +02:00
|
|
|
</div>
|
|
|
|
<div class="w3-rest">{{.quicknote.Note_rendered | safeHTML}}</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|