source: extensions/GMaps/admin/gmaps_maps_iListMaps.tpl @ 15907

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

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

File size: 1.0 KB
Line 
1<table class="littlefont">
2  {foreach from=$datas item=data}
3  <tr title='[gmaps=id:{$data.id};]'>
4    <td>{$data.name}</td>
5    <td style="width:150px;">{$data.displayType}</td>
6    <td style="width:90px;">{$data.dimensions}</td>
7    <td style="width:90px;">{$data.zoomLevel}</td>
8    <td style="width:90px;">{$data.mapType}</td>
9    <td style="width:90px;">{$data.mapTypeControl}</td>
10    <td style="width:90px;">{$data.navigationControl}</td>
11    <td style="width:90px;">{$data.scaleControl}</td>
12    <td style="width:90px;">{$data.streetViewControl}</td>
13
14    <td width="40px">
15      <img src="{$themeconf.admin_icon_dir}/edit_s.png"
16           class="button" alt="{'gmaps_edit'|@translate}"
17           title="{'gmaps_edit'|@translate}"
18           onclick='udm.editMap({$data.id});'/>
19      <img src="{$themeconf.admin_icon_dir}/delete.png"
20           class="button"
21           alt="{'gmaps_delete'|@translate}"
22           title="{'gmaps_delete'|@translate}"
23           onclick='udm.deleteMap({$data.id});'/>
24    </td>
25  </tr>
26  {/foreach}
27</table>
Note: See TracBrowser for help on using the repository browser.