added 'message' to 500.html

This commit is contained in:
BroodjeAap 2022-12-27 15:11:34 +00:00
parent ad40aae4e9
commit 2916965154

View file

@ -3,5 +3,9 @@ GoWatch Error
{{end}}
{{define "content"}}
<h1>Something went wrong, try again.</h1>
{{ if .message }}
<h1>{{ .message }}</h1>
{{ else }}
<h1>Something went wrong, try again.</h1>
{{ end }}
{{end}}