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.

32 lines
504 B

  1. ::use 'admin/design.mtt'::
  2. <h2>Plugins</h2>
  3. <p>
  4. L'installation des plugins se fait sur la machine de développement.
  5. </p>
  6. <table class="table table-bordered">
  7. ::foreach p plugins::
  8. <tr>
  9. <th>Nom</th>
  10. <th>Installé</th>
  11. </tr>
  12. <tr>
  13. <td>::p.name::</td>
  14. <td>
  15. ::set i = p.isInstalled()::
  16. $$bool(::i::)
  17. ::if i==false::
  18. <a href="/admin/plugins/install/::p.getName()::" class="btn btn-default">Installer</a>
  19. ::end::
  20. </td>
  21. <td>
  22. </td>
  23. </tr>
  24. ::end::
  25. </table>
  26. ::end::