blob: 9c22e8c367b0bc46d68c8efd5656c2a06d19ac25 [file] [log] [blame]
Matteo Scandolo97532ef2016-05-17 17:12:03 -07001<!-- <xos-table data="vm.contentProviderList" config="vm.config"/> -->
Matteo Scandolo91fe03d2016-03-24 15:29:52 -07002
Matteo Scandolo15d692c2015-10-28 12:00:07 +01003<table class="table table-striped" ng-show="vm.contentProviderList.length > 0">
4 <thead>
5 <tr>
6 <th>
7 Name
8 </th>
9 <th>Description</th>
10 <th>Status</th>
11 <th></th>
12 </tr>
13 </thead>
14 <tr ng-repeat="item in vm.contentProviderList">
15 <td>
Matteo Scandolo7db08432015-11-06 18:49:33 +010016 <a ui-sref="details({ id: item.id })">{$ item.humanReadableName $}</a>
Matteo Scandolo15d692c2015-10-28 12:00:07 +010017 </td>
18 <td>
19 {$ item.description $}
20 </td>
21 <td>
22 {$ item.enabled $}
23 </td>
24 <td class="text-right">
Matteo Scandolo97532ef2016-05-17 17:12:03 -070025 <a ng-click="vm.deleteCp(item.id)" class="btn btn-danger"><i class="glyphicon glyphicon-remove"></i></a></td>
Matteo Scandolo15d692c2015-10-28 12:00:07 +010026 </tr>
27</table>
28<div class="alert alert-error" ng-show="vm.contentProviderList.length == 0">
29 No Content Provider defined
30</div>
31
32<div class="row">
33 <div class="span12 text-right">
34 <a class="btn btn-success"href="#/contentProvider/">Create</a>
35 </div>
36</div>