Files
Piwigo/plugins/AMenuManager/admin/amm_personalisedlist_detail.tpl
T
grum 526d8006a1 updating files for the Menu class (test_menu)
+ add functionnalities

updating files for the AMenuManager plugin
 + fixes some bugs
 + add functionnalities

updating common classes grum_plugins_classes-2
(needed for the AMenuManager plugin)
 + add functionalities for google_translator use


git-svn-id: http://piwigo.org/svn/trunk@2468 68402e56-0260-453c-a942-63ccdbb3a9ee
2008-08-07 21:52:45 +00:00

23 lines
809 B
Smarty

{if isset($datas.sections) and count($datas.sections)}
<table class="table2 littlefont">
<tr class="throw">
<th>{'g002_setting_personalised_nfo'|@translate}</th>
<th>{'g002_title'|@translate}</th>
<th>{'g002_visible'|@translate}</th>
<th colspan=2>&nbsp;</th>
</tr>
{foreach from=$datas.sections key=name item=section}
<tr>
<td>{$section.nfo}</td>
<td>{$section.title}</td>
<td style="text-align:center;">{$section.visible}</td>
<td width="15px"><a href="{$section.edit}"><img src='{$themeconf.icon_dir}/category_edit.png'/></a></td>
<td width="15px"><a style="cursor:pointer;" onclick="load_list('delete', {$section.ID})"><img src='{$themeconf.icon_dir}/delete.png'/></a></td>
</tr>
{/foreach}
</table>
{/if}