Files
pcinv/templates/errors.gohtml

13 lines
192 B
Plaintext

{{- /*gotype: main.ErrorVM*/}}
{{define "errors"}}
{{template "header" .StatusCode | statusText}}
<ul>
{{range .Errors}}
<li>{{.}}</li>
{{end}}
</ul>
{{template "footer"}}
{{end}}