blob: 0f2cc43e40868dd7f40a83425a2e6eaf459e8665 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<div class="titrePage">
<span class="sort">
{'Sort order'|@translate} :
<select onchange="document.location = this.options[this.selectedIndex].value;" style="width:200px">
{html_options options=$order_options selected=$order_selected}
</select>
</span>
<h2>{'Plugins'|@translate}</h2>
</div>
{if isset($plugins)}
<table class="table2">
<thead>
<tr class="throw">
<td>{'Name'|@translate}</td>
<td>{'Version'|@translate}</td>
<td>{'Description'|@translate}</td>
<td>{'Actions'|@translate}</td>
</tr>
</thead>
{foreach from=$plugins item=plugin name=plugins_loop}
<tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}">
<td class="pluginState{if not empty($plugin.STATE)} {$plugin.STATE}{/if}">
{$plugin.NAME}
</td>
<td>{$plugin.VERSION}</td>
<td>{$plugin.DESCRIPTION}</td>
<td>
{foreach from=$plugin.actions item=action}
<a href="{$action.U_ACTION}"
{if isset($action.CONFIRM)} onclick="return confirm('{$action.CONFIRM|@escape:'javascript'}');"{/if}
{$TAG_INPUT_ENABLED}>{$action.L_ACTION}</a>
{/foreach}
</td>
</tr>
{/foreach}
</table>
{/if}
|