source: extensions/GMaps/admin/gmaps_kmlfiles_iListFiles.tpl @ 7132

Last change on this file since 7132 was 7132, checked in by grum, 14 years ago

KML files manager implemented + fixe some small bugs + forgotten file for the search page

  • Property svn:executable set to *
File size: 792 bytes
Line 
1<table class="littlefont">
2  {foreach from=$datas item=data}
3  <tr>
4    <td>{$data.name}</td>
5    <td style="width:300px;">{$data.file}</td>
6    <th style="width:180px;">{$data.fileDate}</th>
7    <td style="width:90px;">{$data.fileSize}</td>
8    <td style="width:90px;">{$data.nbAssoc}</td>
9
10    <td width="40px">
11      <img src="{$themeconf.admin_icon_dir}/edit_s.png"
12           class="button" alt="{'gmaps_edit'|@translate}"
13           title="{'gmaps_edit'|@translate}"
14           onclick='km.editKmlFile({$data.id});'/>
15      <img src="{$themeconf.admin_icon_dir}/delete.png"
16           class="button"
17           alt="{'gmaps_delete'|@translate}"
18           title="{'gmaps_delete'|@translate}"
19           onclick='km.deleteKmlFile({$data.id});'/>
20    </td>
21  </tr>
22  {/foreach}
23</table>
24
Note: See TracBrowser for help on using the repository browser.