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

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

KML files manager implemented + fixe some small bugs + forgotten file for the search page

File size: 976 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    <td style="width:150px;">{$data.displayType}</td>
7    <td style="width:350px;">{$data.mapName}</td>
8    <td style="width:220px;">
9      {if $data.mapKmlFile==''}
10        {'gmaps_n'|@translate}
11      {else}
12        {'gmaps_y'|@translate}&nbsp;<span style='font-style:italic;'>({$data.mapKmlFile})</span>
13      {/if}
14    </td>
15
16    <td width="40px">
17      <img src="{$themeconf.admin_icon_dir}/edit_s.png"
18           class="button" alt="{'gmaps_edit'|@translate}"
19           title="{'gmaps_edit'|@translate}"
20           onclick='am.editAssoc({$data.id});'/>
21      <img src="{$themeconf.admin_icon_dir}/delete.png"
22           class="button"
23           alt="{'gmaps_delete'|@translate}"
24           title="{'gmaps_delete'|@translate}"
25           onclick='am.deleteAssoc({$data.id});'/>
26    </td>
27  </tr>
28  {/foreach}
29</table>
30
Note: See TracBrowser for help on using the repository browser.