Files
Atay-Makhzan/templates/base/alert.tmpl
T

16 lines
340 B
Cheetah
Raw Normal View History

2015-07-08 19:47:56 +08:00
{{if .Flash.ErrorMsg}}
2015-12-07 23:30:52 +01:00
<div class="ui negative message">
2017-02-19 19:18:06 +08:00
<p>{{.Flash.ErrorMsg | Str2html}}</p>
2015-12-07 23:30:52 +01:00
</div>
2015-07-24 23:13:42 +08:00
{{end}}
{{if .Flash.SuccessMsg}}
2015-12-07 23:30:52 +01:00
<div class="ui positive message">
2017-02-19 19:18:06 +08:00
<p>{{.Flash.SuccessMsg | Str2html}}</p>
2015-12-07 23:30:52 +01:00
</div>
2015-08-06 22:48:11 +08:00
{{end}}
{{if .Flash.InfoMsg}}
2015-12-07 23:30:52 +01:00
<div class="ui info message">
2017-02-19 19:18:06 +08:00
<p>{{.Flash.InfoMsg | Str2html}}</p>
2015-12-07 23:30:52 +01:00
</div>
{{end}}