Files
libredesk/static/public/web-templates/error.html
T
Abhinav Raut d3c2cc2527 feat: add CSAT sending functionality and improve error handling in templates
feat: automation action to send CSAT.
- minor refactors.
2025-02-02 21:03:09 +05:30

11 lines
216 B
HTML

{{ define "error" }}
{{ template "header" . }}
<section class="center">
{{ if .Data.ErrorMessage }}
<p class="error">{{ .Data.ErrorMessage }}</p>
{{ end }}
</section>
{{ template "footer" . }}
{{ end }}