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