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

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

Admin interface + Gallery integration finished

File size: 803 bytes
Line 
1<table class="littlefont">
2  {foreach from=$datas item=data}
3  <tr>
4    <td>{$data.catName}</td>
5    <td style="width:90px;">{$data.applySubCat}</td>
6    <th style="width:150px;">{$data.displayType}</th>
7    <td style="width:300px;">{$data.mapName}</td>
8    <td style="width:90px;">{$data.mapKmlFile}</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='am.editAssoc({$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='am.deleteAssoc({$data.id});'/>
20    </td>
21  </tr>
22  {/foreach}
23</table>
24
Note: See TracBrowser for help on using the repository browser.