33 lines
No EOL
1,016 B
HTML
33 lines
No EOL
1,016 B
HTML
{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 ''}
|
|
|
|
<div class="alert alert-danger">
|
|
<button data-dismiss="alert" class="close" type="button">
|
|
<i class="icon-remove bigger-110"></i></button>
|
|
{foreach from=$err item=show_msg}
|
|
<p><i class="icon-remove"></i>{$show_msg}</p>
|
|
{/foreach}
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{if $msg.0 neq ''}
|
|
<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}
|
|
<p ><i class="icon-ok bigger-110 green"></i>{$show_msg}</p>
|
|
{/foreach}
|
|
</div>
|
|
{/if}
|
|
|
|
{if $war.0 neq ''}
|
|
<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}
|
|
<p><strong>Warning!</strong>{$show_msg}</p>
|
|
{/foreach}
|
|
</div>
|
|
{/if} |