| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <navbar title="Plugins" icon="icon-gf icon-gf-apps" title-url="plugins">
- </navbar>
- <div class="page-container">
- <div class="page-header">
- <h1>Plugins</h1>
- </div>
- <table class="filter-table">
- <thead>
- <tr>
- <th><strong>Name</strong></th>
- <th><strong>Type</strong></th>
- <th style="width: 60px;"></th>
- <th style="width: 80px;"></th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="plugin in ctrl.plugins">
- <td>
- <a href="plugins/{{plugin.id}}/edit">
- {{plugin.name}}
- </a>
- </td>
- <td>
- {{plugin.type}}
- </td>
- <td>
- <span class="label label-info" ng-if="plugin.enabled">Enabled</span>
- <span class="label label-info" ng-if="plugin.pinned">Pinned</span>
- </td>
- <td class="text-right">
- <a href="plugins/{{plugin.id}}/edit" class="btn btn-inverse btn-small">
- <i class="fa fa-edit"></i>
- Edit
- </a>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
|