source: trunk/template/yoga/admin/plugins_list.tpl @ 2260

Last change on this file since 2260 was 2243, checked in by patdenice, 17 years ago

Corections to respect coding conventions.
Change plugins versions to 1.8
Change 3 plugins URI.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.0 KB
Line 
1<div class="titrePage">
2  <h2>{'Plugins'|@translate}</h2>
3{$TABSHEET}
4</div>
5
6{'Sort order'|@translate} :
7  <select onchange="document.location = this.options[this.selectedIndex].value;" style="width:100px">
8        {html_options options=$order selected=$selected}
9  </select>
10
11{if isset($plugins)}
12<table class="table2">
13<thead>
14  <tr class="throw">
15    <td>{'Name'|@translate}</td>
16    <td>{'Version'|@translate}</td>
17    <td>{'Description'|@translate}</td>
18    <td>{'Actions'|@translate}</td>
19  </tr>
20</thead>
21{foreach from=$plugins item=plugin name=plugins_loop}
22  <tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}">
23    <td>{$plugin.NAME}</td>
24    <td>{$plugin.VERSION}</td>
25    <td>{$plugin.DESCRIPTION}</td>
26    <td>
27      {foreach from=$plugin.actions item=action}
28      <a href="{$action.U_ACTION}"
29        {if isset($action.CONFIRM)}
30          onclick="return confirm('{$action.CONFIRM|@escape:javascript}');"
31        {/if}
32      {$TAG_INPUT_ENABLED}>{$action.L_ACTION}</a>
33      {/foreach}
34    </td>
35  </tr>
36{/foreach}
37</table>
38{/if}
Note: See TracBrowser for help on using the repository browser.