clipbucket/upload/styles/cbv2.7/layout/message.html
2014-05-09 14:38:00 +00:00

40 lines
No EOL
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{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 != ''}
<div class="alert alert-danger alert-dismissable">
<button class="close" type="button" data-dismiss="alert" aria-hidden="true">×</button>
<ul class="list-unstyled">
{foreach from=$err item=show_msg}
<li> {$show_msg} </li>
{/foreach}
</ul>
</div>
{/if}
{if $msg.0 neq ''}
<div class="alert alert-success alert-dismissable">
<button class="close" type="button" data-dismiss="alert" aria-hidden="true">×</button>
<ul class="list-unstyled">
{foreach from=$msg item=show_msg}
<li>{$show_msg}</li>
{/foreach}
</ul>
</div>
{/if}
{if $war.0 neq ''}
<div class="alert alert-warning alert-dismissable">
<button class="close" type="button" data-dismiss="alert" aria-hidden="true">×</button>
<ul class="list-unstyled">
<img src="{$imageurl}/messagebox_warning.png" style="float:left" />
{foreach from=$war item=show_msg}
<li>{$show_msg}</li>
{/foreach}
</ul>
<div class="clearfix"></div>
</div>
{/if}