source: extensions/GrumPluginClasses/templates/GPCRequestBuilder_result.tpl @ 19961

Last change on this file since 19961 was 16012, checked in by grum, 12 years ago

feature:2634- compatibility with Piwigo 2.4
+add some objects on js framework

File size: 689 bytes
Line 
1<ul class='rbResultList'>
2  {foreach from=$datas item=row}
3  <li>
4    <table>
5      <tr>
6        <td class="rbResultItemImg">
7          <img class="thumbnail" src='{$row.imageThumbnail}'>
8        </td>
9
10        <td class="rbResultItemDetail">
11          {if $row.imageName!=''}{$row.imageName}<br>{/if}
12          {foreach from=$row.imageCategories key=catname item=catdata name=catlist}
13<a href="{$catdata.link}">{$catdata.name}</a>{if $smarty.foreach.catlist.last}<br/>{else},&nbsp;{/if}
14          {/foreach}
15          <hr>
16          {foreach from=$row.plugin item=plugin}
17          {$plugin}<br>
18          {/foreach}
19        </td>
20
21      </tr>
22    </table>
23
24  </li>
25  {/foreach}
26
27
28</ul>
29
Note: See TracBrowser for help on using the repository browser.