oef/templates/layout/show_error.html.tpl

16 lines
359 B
Smarty
Raw Normal View History

{{define "show_error"}}
<div class="container">
<div class="alert alert-danger" role="alert">
<h4 class="alert-heading">
{{.options.title}}
</h4>
{{.data}}
2021-01-02 19:04:06 +01:00
{{if and .data.Referer (not .options.noReferer)}}
2021-01-04 11:19:41 +01:00
Clicca {{.data.Referer|alertLink "qui"}} per tornare all'azione precedente.
{{end}}
</div>
<p>
</p>
</div>
{{end}}