diff options
Diffstat (limited to 'plugins/AMenuManager/admin/amm_sectionsmod_detail.tpl')
-rw-r--r-- | plugins/AMenuManager/admin/amm_sectionsmod_detail.tpl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/AMenuManager/admin/amm_sectionsmod_detail.tpl b/plugins/AMenuManager/admin/amm_sectionsmod_detail.tpl new file mode 100644 index 000000000..dcaf625f6 --- /dev/null +++ b/plugins/AMenuManager/admin/amm_sectionsmod_detail.tpl @@ -0,0 +1,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} |