source: extensions/AMetaData/admin/amd_metadata_tags_iKeywordsList.tpl @ 15907

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

Migration from version 0.4.0 to 0.5.1 implemented

File size: 996 bytes
Line 
1{literal}
2<script type="text/javascript">
3  function switchState(tagId)
4  {
5    $("#"+tagId).get(0).checked=!$("#"+tagId).get(0).checked;
6  }
7</script>
8{/literal}
9
10{if count($datas)>0}
11<table class="littlefont listTags {$themeconf.name}" style="width:100%;">
12  {foreach from=$datas key=name item=data}
13  <tr>
14    <td width="15px">
15      <input type="checkbox" id="iTagId{$data.id}">
16      <input type="hidden" id="iTagValue{$data.id}" value="{$data.value}">
17    </td>
18    <td style="min-width:325px;" onclick="switchState('iTagId{$data.id}');">{$data.value}</td>
19    <td style="width:120px;" onclick="switchState('iTagId{$data.id}');">{$data.nbPictures}</td>
20    <td style="width:120px;" onclick="switchState('iTagId{$data.id}');">{'g003_'|cat:$data.tagExists|@translate}</td>
21    <td style="width:120px;" onclick="switchState('iTagId{$data.id}');">{if $data.nbPicturesTagged!='0'}{$data.nbPicturesTagged}{/if}</td>
22  </tr>
23  {/foreach}
24</table>
25{else}
26<br>
27{'g003_no_keywords'|@translate}
28{/if}
Note: See TracBrowser for help on using the repository browser.