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

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

Admin interface + Gallery integration finished

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