blob: 36fa847be4bd04c19bdd1ba54f1d114c38302498 [file] [log] [blame]
Bhavesh72ead492018-07-19 16:29:18 +05301<!--
2~ Copyright 2015-present Open Networking Foundation
3~
4~ Licensed under the Apache License, Version 2.0 (the "License");
5~ you may not use this file except in compliance with the License.
6~ You may obtain a copy of the License at
7~
8~ http://www.apache.org/licenses/LICENSE-2.0
9~
10~ Unless required by applicable law or agreed to in writing, software
11~ distributed under the License is distributed on an "AS IS" BASIS,
12~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13~ See the License for the specific language governing permissions and
14~ limitations under the License.
15-->
16<div id="port-details-panel" class="floatpanel" [@portDetailsState]="id!=='' && !closed">
17 <div class="container">
18 <div class="top">
19 <div class="close-btn">
20 <onos-icon class="close-btn" classes="active-close" iconId="close" iconSize="20" (click)="close()"></onos-icon>
21 </div>
22 <div class="port-icon">
23 <onos-icon classes="details-icon" iconId="m_ports" [iconSize]="42"></onos-icon>
24 </div>
25 <h2>{{detailsData.devId}} port {{detailsData.id}}</h2>
26 <div class="top-content">
27 <div class="top-tables">
28 <div class="left">
29 <table>
30 <tbody>
31 <tr>
32 <td class="label" width="110">ID :</td>
33 <td class="value" width="80">{{detailsData.id}}</td>
34 </tr>
35 <tr>
36 <td class="label" width="110">Device :</td>
37 <td class="value" width="80">{{detailsData.devId}}</td>
38 </tr>
39 <tr>
40 <td class="label" width="110">Type :</td>
41 <td class="value" width="80">{{detailsData.type}}</td>
42 </tr>
43 <tr>
44 <td class="label" width="110">Speed :</td>
45 <td class="value" width="80">{{detailsData.speed}}</td>
46 </tr>
47 <tr>
48 <td class="label" width="110">Enabled :</td>
49 <td class="value" width="80">{{detailsData.enabled}}</td>
50 </tr>
51 </tbody>
52 </table>
53 </div>
54 </div>
55 </div>
56 <hr>
57 </div>
58 <div class="bottom"></div>
59 </div>
60</div>