source: extensions/AMenuManager/admin/amm_personalisedlist_detail.tpl @ 8804

Last change on this file since 8804 was 3681, checked in by grum, 15 years ago

Add plugin Advanced Menu Manager 2.1.0

  • Property svn:executable set to *
File size: 809 bytes
Line 
1
2{if isset($datas.sections) and count($datas.sections)}
3  <table class="table2 littlefont">
4    <tr class="throw">
5      <th>{'g002_setting_personalised_nfo'|@translate}</th>
6      <th>{'g002_title'|@translate}</th>
7      <th>{'g002_visible'|@translate}</th>
8      <th colspan=2>&nbsp;</th>
9    </tr>
10
11    {foreach from=$datas.sections key=name item=section}
12      <tr>
13        <td>{$section.nfo}</td>
14        <td>{$section.title}</td>
15        <td style="text-align:center;">{$section.visible}</td>
16        <td width="15px"><a href="{$section.edit}"><img src='{$themeconf.icon_dir}/category_edit.png'/></a></td>
17        <td width="15px"><a style="cursor:pointer;" onclick="load_list('delete', {$section.ID})"><img src='{$themeconf.icon_dir}/delete.png'/></a></td>
18      </tr>
19    {/foreach}
20
21  </table>
22{/if}
Note: See TracBrowser for help on using the repository browser.