]> git.sur5r.net Git - contagged/blob - templates/list.tpl
Merge pull request #15 from cweiske/master
[contagged] / templates / list.tpl
1 {include file="header.tpl"}
2
3 <table cellspacing="0" cellpadding="0" width="100%" align="center" class="list">
4   {if $conf.userlogreq == 1 && $user == ''}
5     <tr>
6       <td align="center">
7       {$lang.msg_login}
8       </td>
9     </tr>
10   {else}
11     {if $list == ''}
12       <tr>
13         <td align="center">
14           {$lang.err_noentries}
15         </td>
16       </tr>
17     {else}
18       {* $list is a concatenation of multiple list_entry.tpl *}
19       {$list}
20     {/if}
21   {/if}
22 </table>
23
24 {include file="footer.tpl"}