2025-11-12 18:26:18 +00:00
|
|
|
{{define "action-buttons"}}
|
|
|
|
|
<!-- Right: Action buttons -->
|
|
|
|
|
<div class="action-buttons-right">
|
|
|
|
|
<button
|
2025-11-16 13:19:56 +00:00
|
|
|
id="action-bar-pdf-btn"
|
2025-11-20 17:52:07 +00:00
|
|
|
class="action-btn pdf-btn has-tooltip"
|
2025-11-12 19:13:52 +00:00
|
|
|
onclick="document.getElementById('pdf-modal').showModal()"
|
2025-11-30 10:13:37 +00:00
|
|
|
aria-label="{{.UI.Widgets.ActionButtons.DownloadPdf}}"
|
|
|
|
|
data-tooltip="{{.UI.Widgets.ActionButtons.DownloadPdf}}"
|
2025-11-16 14:03:22 +00:00
|
|
|
_="on mouseenter call syncPdfHover(true)
|
|
|
|
|
on mouseleave call syncPdfHover(false)">
|
2025-11-17 08:34:50 +00:00
|
|
|
<iconify-icon icon="catppuccin:pdf" width="24" height="24"></iconify-icon>
|
2025-11-30 10:13:37 +00:00
|
|
|
{{.UI.Widgets.ActionButtons.DownloadPdf}}
|
2025-11-12 18:26:18 +00:00
|
|
|
</button>
|
|
|
|
|
<button
|
2025-11-20 17:52:07 +00:00
|
|
|
class="action-btn print-btn action-bar-print-btn has-tooltip"
|
2025-11-30 10:13:37 +00:00
|
|
|
aria-label="{{.UI.Widgets.ActionButtons.PrintFriendly}}"
|
|
|
|
|
data-tooltip="{{.UI.Widgets.ActionButtons.PrintFriendly}}"
|
2025-11-16 13:19:56 +00:00
|
|
|
_="on click call printFriendly()
|
2025-11-16 14:03:22 +00:00
|
|
|
on mouseenter call syncPrintHover(true)
|
|
|
|
|
on mouseleave call syncPrintHover(false)">
|
2025-11-17 08:34:50 +00:00
|
|
|
<iconify-icon icon="mdi:leaf" width="24" height="24"></iconify-icon>
|
2025-11-30 10:13:37 +00:00
|
|
|
{{.UI.Widgets.ActionButtons.PrintFriendly}}
|
2025-11-12 18:26:18 +00:00
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
{{end}}
|