source: trunk/themes/smartpocket/template/infos_errors.tpl @ 13182

Last change on this file since 13182 was 13182, checked in by patdenice, 12 years ago

feature:2577
Add mobile theme

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.