You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
504 B
33 lines
504 B
::use 'admin/design.mtt'::
|
|
|
|
<h2>Plugins</h2>
|
|
<p>
|
|
L'installation des plugins se fait sur la machine de développement.
|
|
</p>
|
|
|
|
|
|
<table class="table table-bordered">
|
|
::foreach p plugins::
|
|
<tr>
|
|
<th>Nom</th>
|
|
<th>Installé</th>
|
|
</tr>
|
|
<tr>
|
|
<td>::p.name::</td>
|
|
<td>
|
|
::set i = p.isInstalled()::
|
|
$$bool(::i::)
|
|
|
|
::if i==false::
|
|
<a href="/admin/plugins/install/::p.getName()::" class="btn btn-default">Installer</a>
|
|
::end::
|
|
</td>
|
|
<td>
|
|
|
|
</td>
|
|
</tr>
|
|
::end::
|
|
|
|
</table>
|
|
|
|
::end::
|