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

Last change on this file since 27153 was 16006, checked in by grum, 12 years ago

feature:2642- compatibility with Piwigo 2.4

  • Property svn:executable set to *
File size: 854 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">
17          <a href="{$section.edit}">
18            <span class='buttonEdit'/>
19          </a>
20        </td>
21        <td width="15px">
22          <a style="cursor:pointer;" onclick="load_list('delete', {$section.ID})">
23            <span class='buttonDelete'/>
24          </a>
25        </td>
26      </tr>
27    {/foreach}
28
29  </table>
30{/if}
Note: See TracBrowser for help on using the repository browser.