15 lines
785 B
HTML
15 lines
785 B
HTML
|
|
{{define "pdf-toast"}}
|
|||
|
|
<!-- PDF Download Toast Notification -->
|
|||
|
|
<div id="pdf-toast" class="success-toast no-print" role="status" aria-live="polite" aria-atomic="true">
|
|||
|
|
<span class="toast-icon" id="pdf-toast-icon">📥</span>
|
|||
|
|
<div class="toast-content">
|
|||
|
|
<p class="toast-title" id="pdf-toast-title">{{if eq .Lang "es"}}Preparando PDF{{else}}Preparing PDF{{end}}</p>
|
|||
|
|
<p class="toast-message" id="pdf-toast-message"></p>
|
|||
|
|
</div>
|
|||
|
|
<button aria-label="{{if eq .Lang "es"}}Cerrar notificación{{else}}Close notification{{end}}" class="toast-close" onclick="document.getElementById('pdf-toast').classList.remove('show')">×</button>
|
|||
|
|
<div class="toast-progress">
|
|||
|
|
<div class="toast-progress-bar" id="pdf-toast-progress"></div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
{{end}}
|