blob: ced8ec25158ca34023bdb2e71dcc0cb6e076449c [file] [log] [blame]
Thomas Vachuska0fa583c2015-03-30 23:07:41 -07001<!-- app partial HTML -->
2<div id="ov-app">
Bri Prebilic Cole45069382015-04-14 15:21:38 -07003 <div class="tabular-header">
Thomas Vachuska619c5382015-04-02 13:41:47 -07004 <h2>Applications ({{ctrl.tableData.length}} total)</h2>
Simon Hunt3695a622015-03-31 11:52:23 -07005 <div class="ctrl-btns">
Bri Prebilic Coleab582b82015-04-14 15:08:22 -07006 <div icon icon-size="36" icon-id="plus"></div>
7 <div icon icon-size="36" icon-id="minus" class="disabled"></div>
8 <div icon icon-size="36" icon-id="play" class="disabled"></div>
9 <div icon icon-size="36" icon-id="stop" class="disabled"></div>
Simon Hunt3695a622015-03-31 11:52:23 -070010 </div>
11 </div>
Bri Prebilic Cole45069382015-04-14 15:21:38 -070012
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070013 <table class="summary-list"
14 onos-fixed-header
15 onos-sortable-header
16 sort-callback="sortCallback(requestParams)">
17 <thead>
18 <tr>
19 <th colId="state" class="table-icon" sortable></th>
20 <th colId="id" sortable>App ID </th>
Bri Prebilic Cole864cdd62015-04-02 15:46:47 -070021 <th colId="version" sortable>Version </th>
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070022 <th colId="origin" sortable>Origin </th>
Bri Prebilic Cole864cdd62015-04-02 15:46:47 -070023 <th colId="desc" col-width="400px">Description </th>
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070024 </tr>
25 </thead>
26
27 <tbody>
Simon Hunt35d18882015-04-02 20:16:26 -070028 <tr ng-hide="ctrl.tableData.length">
29 <td class="nodata" colspan="5">
30 No Applications found
31 </td>
32 </tr>
33
34 <tr ng-repeat="app in ctrl.tableData"
Bri Prebilic Coleb699a162015-04-13 12:01:39 -070035 ng-click="selectCallback($event, app)"
Simon Hunt35d18882015-04-02 20:16:26 -070036 ng-class="{selected: app === sel}"
37 ng-repeat-done>
38 <td class="table-icon">
39 <div icon icon-id="{{app._iconid_state}}"></div>
40 </td>
41 <td>{{app.id}}</td>
42 <td>{{app.version}}</td>
43 <td>{{app.origin}}</td>
44 <td>{{app.desc}}</td>
45 </tr>
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070046 </tbody>
47 </table>
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070048</div>