clipbucket/upload/admin_area/styles/cb_2014/layout/msg.html

33 lines
1,019 B
HTML
Raw Normal View History

2014-02-24 05:38:00 +00:00
{assign var=msg value=$eh->message_list}
{assign var=err value=$eh->error_list}
{assign var=war value=$eh->warning_list}
{if $err.0 neq '' || $err.1 neq ''}
2014-03-17 11:26:00 +00:00
<div class="alert alert-danger">
<button data-dismiss="alert" class="close" type="button">
<i class="icon-remove bigger-110"></i></button>
2014-02-24 05:38:00 +00:00
{foreach from=$err item=show_msg}
2014-03-17 12:45:03 +00:00
<p><i class="icon-remove"></i> {$show_msg}</p>
2014-02-24 05:38:00 +00:00
{/foreach}
</div>
{/if}
{if $msg.0 neq ''}
2014-03-17 11:26:00 +00:00
<div class="alert alert-block alert-success"><button class="close" data-dismiss="alert" type="button">
<i class="icon-remove"></i></button>
{foreach from=$msg item=show_msg}
2014-03-17 12:45:03 +00:00
<p ><i class="icon-ok bigger-110 green"></i> {$show_msg}</p>
2014-03-17 11:26:00 +00:00
{/foreach}
2014-02-24 05:38:00 +00:00
</div>
{/if}
{if $war.0 neq ''}
2014-03-17 11:26:00 +00:00
<div class="alert alert-warning"><button data-dismiss="alert" class="close" type="button">
<i class="icon-remove"></i></button>
{foreach from=$war item=show_msg}
2014-03-17 12:45:03 +00:00
<p><strong>Warning!</strong> {$show_msg}</p>
2014-03-17 11:26:00 +00:00
{/foreach}
2014-02-24 05:38:00 +00:00
</div>
{/if}