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

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

Fix bugs on install process ; add street view control management

File size: 1022 bytes
Line 
1<table class="littlefont">
2  {foreach from=$datas item=data}
3  <tr>
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.