blob: dcaf625f6d7f696de6fa040b3c474c9a03a2b608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{if isset($datas.LIST) and count($datas.LIST)}
<table class="table2 littlefont">
<tr class="throw">
<th>{'g002_labelmenu'|@translate}</th>
<th>{'g002_visible'|@translate}</th>
</tr>
{foreach from=$datas.LIST key=name item=data}
<tr>
<td>{$data.LABEL|@translate}</td>
<td style="text-align:center;"><a style="cursor:pointer;" onclick="load_list('showhide', '{$data.ID}', '')">{$data.VISIBLE|@translate}</a></td>
</tr>
{/foreach}
</table>
{/if}
|