2025-11-16 13:19:56 +00:00
|
|
|
{{define "download-button"}}
|
|
|
|
|
<!-- Download PDF Button (Fixed Left) -->
|
|
|
|
|
<button
|
|
|
|
|
id="download-button"
|
2025-11-20 18:05:45 +00:00
|
|
|
class="fixed-btn download-btn no-print has-tooltip"
|
2025-11-30 10:13:37 +00:00
|
|
|
aria-label="{{.UI.Widgets.Download.AriaLabel}}"
|
|
|
|
|
data-tooltip="{{.UI.Widgets.Download.Tooltip}}"
|
2025-11-22 16:23:05 +00:00
|
|
|
onclick="openPdfModal()"
|
2025-11-16 14:03:22 +00:00
|
|
|
_="on mouseenter call syncPdfHover(true)
|
|
|
|
|
on mouseleave call syncPdfHover(false)">
|
2025-12-01 12:31:31 +00:00
|
|
|
<iconify-icon icon="catppuccin:pdf"></iconify-icon>
|
2025-11-16 13:19:56 +00:00
|
|
|
</button>
|
|
|
|
|
{{end}}
|