30 lines
1.3 KiB
HTML
30 lines
1.3 KiB
HTML
{{define "pdf-modal"}}
|
|
<!-- PDF Export Modal - Native Dialog -->
|
|
<dialog id="pdf-modal" class="info-modal no-print"
|
|
_="on click
|
|
if event.target is me
|
|
call me.close()
|
|
end">
|
|
<div class="info-modal-content">
|
|
<button class="info-modal-close" onclick="document.getElementById('pdf-modal').close()" aria-label="Close">
|
|
<iconify-icon icon="mdi:close" width="24" height="24"></iconify-icon>
|
|
</button>
|
|
|
|
<div class="info-modal-header">
|
|
<div class="icon" style="font-size: 3rem; margin-bottom: 1rem;">🚧</div>
|
|
<h2>{{if eq .Lang "es"}}Exportación PDF - En Desarrollo{{else}}PDF Export - Work in Progress{{end}}</h2>
|
|
</div>
|
|
|
|
<div class="info-modal-body">
|
|
<p class="info-modal-description">
|
|
{{if eq .Lang "es"}}
|
|
La función de exportación a PDF está siendo mejorada. Por favor, usa el botón <strong>Imprimir Amigable</strong> en su lugar (Ctrl+P o Cmd+P para guardar como PDF).
|
|
{{else}}
|
|
The PDF export feature is currently being improved. Please use the <strong>Print Friendly</strong> button instead (Ctrl+P or Cmd+P to save as PDF).
|
|
{{end}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</dialog>
|
|
{{end}}
|