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