clipbucket/upload/styles/cbv3/layout/message.html
Arslan Hassan 38d173ea61 Added : New add playlist options for front end
Fixed : Language issues
Updated : Javascript
Updated : js functions
2012-05-25 11:15:58 +00:00

53 lines
No EOL
1.1 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 count($err)>0}
<div class="alert alert-danger">
<a class="close" data-dismiss="alert" href="javascript:void(0)">×</a>
{if count($err)>1}
<ul>
{foreach from=$err item=show_msg}
<li> {$show_msg} </li>
{/foreach}
</ul>
{else}
{$err.0}
{/if}
</div>
{/if}
{if count($msg)>0}
<div class="alert alert-success">
<a class="close" data-dismiss="alert" href="javascript:void(0)">×</a>
{if count($msg)>1}
<ul>
{foreach from=$msg item=show_msg}
<li>{$show_msg}</li>
{/foreach}
</ul>
{else}
{$msg.0}
{/if}
</div>
{/if}
{if count($war)>0}
<div class="alert">
<a class="close" data-dismiss="alert" href="javascript:void(0)">×</a>
{if count($war)>1}
<ul>
<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>
{else}
{$war.0}
{/if}
</div>
{/if}