aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base/alert.tmpl
blob: cf886f529cac20e16d64c7c06249b6858ca76b45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{if .Flash.ErrorMsg}}
	<div class="ui negative message flash-error">
		<p>{{.Flash.ErrorMsg | Str2html}}</p>
	</div>
{{end}}
{{if .Flash.SuccessMsg}}
	<div class="ui positive message flash-success">
		<p>{{.Flash.SuccessMsg | Str2html}}</p>
	</div>
{{end}}
{{if .Flash.InfoMsg}}
	<div class="ui info message flash-info">
		<p>{{.Flash.InfoMsg | Str2html}}</p>
	</div>
{{end}}