source: branches/2.4/themes/default/template/infos_errors.tpl @ 16930

Last change on this file since 16930 was 12764, checked in by mistic100, 12 years ago

feature:2538 Make a unified messages management
use only $pageinfos and $pageerrors vars and and necessary template to all main pages

File size: 288 bytes
Line 
1{if isset($errors) }
2<div class="errors">
3  <ul>
4    {foreach from=$errors item=error}
5    <li>{$error}</li>
6    {/foreach}
7  </ul>
8</div>
9{/if}
10
11{if not empty($infos)}
12<div class="infos">
13  <ul>
14    {foreach from=$infos item=info}
15    <li>{$info}</li>
16    {/foreach}
17  </ul>
18</div>
19{/if}
Note: See TracBrowser for help on using the repository browser.