blob: 7f6433d6799569791a50611c6a5142958707bf95 [file] [log] [blame]
Bhavesh72ead492018-07-19 16:29:18 +05301<!--
Sean Condonf4f54a12018-10-10 23:25:46 +01002~ Copyright 2018-present Open Networking Foundation
Bhavesh72ead492018-07-19 16:29:18 +05303~
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>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010032 <td class="label" width="110">ID</td>
Bhavesh72ead492018-07-19 16:29:18 +053033 <td class="value" width="80">{{detailsData.id}}</td>
34 </tr>
35 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010036 <td class="label" width="110">Device</td>
Bhavesh72ead492018-07-19 16:29:18 +053037 <td class="value" width="80">{{detailsData.devId}}</td>
38 </tr>
39 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010040 <td class="label" width="110">Type</td>
Bhavesh72ead492018-07-19 16:29:18 +053041 <td class="value" width="80">{{detailsData.type}}</td>
42 </tr>
43 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010044 <td class="label" width="110">Speed</td>
Bhavesh72ead492018-07-19 16:29:18 +053045 <td class="value" width="80">{{detailsData.speed}}</td>
46 </tr>
47 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010048 <td class="label" width="110">Enabled</td>
Bhavesh72ead492018-07-19 16:29:18 +053049 <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>