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

35 lines
671 B
HTML
Raw Normal View History

{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 ''}
2012-06-29 10:58:11 +00:00
<div class="alert alert-danger">
<ul>
{foreach from=$err item=show_msg}
2012-06-29 10:58:11 +00:00
<li>{$show_msg}</li>
{/foreach}
</ul>
</div>
{/if}
{if $msg.0 neq ''}
2012-06-29 10:58:11 +00:00
<div class="alert alert-success">
<ul>
{foreach from=$msg item=show_msg}
2012-06-29 10:58:11 +00:00
<li>{$show_msg}</li>
{/foreach}
</ul>
</div>
{/if}
{if $war.0 neq ''}
2012-06-29 10:58:11 +00:00
<div class="alert">
<ul>
{foreach from=$war item=show_msg}
2012-06-29 10:58:11 +00:00
<li>{$show_msg}</li>
{/foreach}
</ul>
</div>
{/if}