plugin_list.html 952 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <navbar title="Plugins" icon="icon-gf icon-gf-apps" title-url="plugins">
  2. </navbar>
  3. <div class="page-container">
  4. <div class="page-header">
  5. <h1>Plugins</h1>
  6. </div>
  7. <table class="filter-table">
  8. <thead>
  9. <tr>
  10. <th><strong>Name</strong></th>
  11. <th><strong>Type</strong></th>
  12. <th style="width: 60px;"></th>
  13. <th style="width: 80px;"></th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <tr ng-repeat="plugin in ctrl.plugins">
  18. <td>
  19. <a href="plugins/{{plugin.id}}/edit">
  20. {{plugin.name}}
  21. </a>
  22. </td>
  23. <td>
  24. {{plugin.type}}
  25. </td>
  26. <td>
  27. <span class="label label-info" ng-if="plugin.enabled">Enabled</span>
  28. <span class="label label-info" ng-if="plugin.pinned">Pinned</span>
  29. </td>
  30. <td class="text-right">
  31. <a href="plugins/{{plugin.id}}/edit" class="btn btn-inverse btn-small">
  32. <i class="fa fa-edit"></i>
  33. Edit
  34. </a>
  35. </td>
  36. </tr>
  37. </tbody>
  38. </table>
  39. </div>
  40. </div>