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

Last change on this file since 7567 was 7567, checked in by grum, 13 years ago

fix bug:1991 - [gmaps] markup, kmlId is not functionnal

  • Property svn:executable set to *
File size: 826 bytes
Line 
1<table class="littlefont">
2  {foreach from=$datas item=data}
3  <tr title='[gmaps=kmlId:{$data.id};]'>
4    <td>{$data.name}</td>
5    <td style="width:300px;">{$data.file}</td>
6    <td style="width:180px;">{$data.fileDate}</td>
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.