blob: 370cd41412db7cd724f034b97803037fe51b9bbb (
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
|
<div class="titrePage">
<h2>{lang:Plugins}
</h2>
</div>
<!-- BEGIN plugins -->
<table class="table2">
<thead><tr class="throw">
<td>{lang:Name}</td>
<td>{lang:Version}</td>
<td>{lang:Description}</td>
<td>{lang:Actions}</td>
</tr></thead>
<!-- BEGIN plugin -->
<tr class="{plugins.plugin.CLASS}">
<td>{plugins.plugin.NAME}</td>
<td>{plugins.plugin.VERSION}</td>
<td>{plugins.plugin.DESCRIPTION}</td>
<td>
<!-- BEGIN action -->
<a href="{plugins.plugin.action.U_ACTION}"
<!-- BEGIN confirm -->
onclick="return confirm('Are you sure?');"
<!-- END confirm -->
{TAG_INPUT_ENABLED}>{plugins.plugin.action.L_ACTION}</a>
<!-- END action -->
</td>
</tr>
<!-- END plugin -->
</table>
<!-- END plugins -->
|