2015-06-15 21:49:16 +00:00
|
|
|
{{define "flashes"}}
|
|
|
|
{{range .}}
|
|
|
|
<div style="text-align:center" class="alert alert-{{.Type}}">
|
|
|
|
<i class="fa
|
|
|
|
{{if eq .Type "danger"}}
|
2014-01-10 03:21:54 +00:00
|
|
|
fa-exclamation-circle
|
2015-06-15 21:49:16 +00:00
|
|
|
{{else if eq .Type "warning"}}
|
2014-01-10 03:21:54 +00:00
|
|
|
fa-exclamation-triangle
|
2015-06-15 21:49:16 +00:00
|
|
|
{{else if eq .Type "success"}}
|
2014-01-10 03:21:54 +00:00
|
|
|
fa-check-circle
|
2015-06-15 21:49:16 +00:00
|
|
|
{{end}}"></i>
|
|
|
|
{{.Message}}
|
2014-01-10 03:21:54 +00:00
|
|
|
</div>
|
2015-06-15 21:49:16 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|