2025-11-16 13:19:56 +00:00
|
|
|
{{define "print-friendly-button"}}
|
|
|
|
|
<!-- Print-Friendly Button (Fixed Left) -->
|
|
|
|
|
<button
|
|
|
|
|
id="print-friendly-button"
|
2025-11-20 18:05:45 +00:00
|
|
|
class="fixed-btn print-friendly-btn no-print has-tooltip"
|
2025-11-30 10:13:37 +00:00
|
|
|
aria-label="{{.UI.Widgets.Print.AriaLabel}}"
|
|
|
|
|
data-tooltip="{{.UI.Widgets.Print.Tooltip}}"
|
2025-11-16 13:19:56 +00:00
|
|
|
onclick="window.print()"
|
2025-11-16 14:03:22 +00:00
|
|
|
_="on mouseenter call syncPrintHover(true)
|
|
|
|
|
on mouseleave call syncPrintHover(false)">
|
2025-11-16 13:19:56 +00:00
|
|
|
<iconify-icon icon="mdi:leaf" width="28" height="28"></iconify-icon>
|
|
|
|
|
</button>
|
|
|
|
|
{{end}}
|