Bump versions by x.(y+1).z for next dev cycle
[dlux.git] / modules / node-resources / src / main / resources / node / detail.tpl.html
1 <!--
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7 -->
8
9
10
11 <h4>{{ 'NODE_ID' | translate }} - {{data.id}}</h4>
12 <div class="form-group searchDiv">
13     <input class="form-control" ng-model="nodeConnectorSearch" placeholder="{{'SEARCH_NODE_CONNECTORS' | translate}}">
14 </div>
15 <table class="footable table">
16   <thead>
17     <tr>
18       <th>{{ 'NODE_CONNECTOR_ID' | translate }}</th>
19       <th>{{ 'NAME' | translate }}</th>
20       <th>{{ 'PORT_NUMBER' | translate }}</th>
21       <th>{{ 'MAC_ADDRESS' | translate }}</th>
22     </tr>
23   </thead>
24   <tbody>
25     <tr ng-hide="data['node-connector'].length"><td colspan="5" class="centerAlign">{{ 'NO_DATA_FOUND' | translate }}</td></tr>
26     <tr ng-repeat="ncp in data['node-connector'] | filter:nodeConnectorSearch" node-table>
27         <td>{{ncp.id}}</td>
28         <td>{{ncp['flow-node-inventory:name']}}</td>
29         <td>{{ncp['flow-node-inventory:port-number']}}</td>
30         <td>{{ncp['flow-node-inventory:hardware-address']}}</td>
31         <!--td>
32           <i class="icon-ok-sign"></i>
33           <port-state value="{{ncp.properties.state.value}}"></port-state>
34         </td-->
35       </tr>
36   </tbody>
37     <tfoot class="hide-if-no-paging">
38     <tr>
39         <td colspan="4">
40             <div class="pagination pagination-centered"></div>
41         </td>
42     </tr>
43     </tfoot>
44 </table>