blob: 41591bced226633ad427a01cd038d55ea1f0a151 [file] [log] [blame]
Sean Condon87b78502018-09-17 20:53:24 +01001<!--
2~ Copyright 2018-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
17<div id="ov-alarm-table-item-details-panel" class="floatpanel" [@alarmDetailsState]="id!=='' && !closed">
18 <div class="container">
19 <div class="top">
20 <div class="close-btn">
21 <onos-icon class="close-btn" classes="active-close" iconId="close" iconSize="20" (click)="close()"></onos-icon>
22 </div>
23 <h2 class="editable clickable">{{detailsData.id}}</h2>
24 <div class="top-content">
25 <div class="top-tables">
26 <div class="left">
27 <table>
28 <tbody>
29 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010030 <td class="label" width="110">Description</td>
Sean Condon87b78502018-09-17 20:53:24 +010031 <td class="value" width="80">{{detailsData.alarmDesc}}</td>
32 </tr>
33 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010034 <td class="label" width="110">Device ID</td>
Sean Condon87b78502018-09-17 20:53:24 +010035 <td class="value" width="80">{{detailsData.alarmDeviceId}}</td>
36 </tr>
37 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010038 <td class="label" width="110">Alarm source</td>
Sean Condon87b78502018-09-17 20:53:24 +010039 <td class="value" width="80">{{detailsData.alarmSource}}</td>
40 </tr>
41 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010042 <td class="label" width="110">Time raised</td>
Sean Condon87b78502018-09-17 20:53:24 +010043 <td class="value" width="80">{{detailsData.alarmTimeRaised}}</td>
44 </tr>
45 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010046 <td class="label" width="110">Time updated</td>
Sean Condon87b78502018-09-17 20:53:24 +010047 <td class="value" width="80">{{detailsData.alarmTimeUpdated}}</td>
48 </tr>
49 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010050 <td class="label" width="110">Cleared</td>
Sean Condon87b78502018-09-17 20:53:24 +010051 <td class="value" width="80">{{detailsData.alarmCleared}}</td>
52 </tr>
53 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010054 <td class="label" width="110">Time cleared</td>
Sean Condon87b78502018-09-17 20:53:24 +010055 <td class="value" width="80">{{detailsData.alarmTimeCleared}}</td>
56 </tr>
57 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010058 <td class="label" width="110">Severity</td>
Sean Condon7c51a012019-12-04 12:47:05 +000059 <td width="80" [ngClass]="[detailsData.alarmSeverity ? detailsData.alarmSeverity:'', 'severity', 'value']">{{detailsData.alarmSeverity}}</td>
Sean Condon87b78502018-09-17 20:53:24 +010060 </tr>
61 <hr>
62 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010063 <td class="label" width="110">Service affecting</td>
Sean Condon87b78502018-09-17 20:53:24 +010064 <td class="value" width="80">{{detailsData.alarmServiceAffecting}}</td>
65 </tr>
66 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010067 <td class="label" width="110">Acknowledged</td>
Sean Condon87b78502018-09-17 20:53:24 +010068 <td class="value" width="80">{{detailsData.alarmAcknowledged}}</td>
69 </tr>
70 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010071 <td class="label" width="110">Assigned User</td>
Sean Condon87b78502018-09-17 20:53:24 +010072 <td class="value" width="80">{{detailsData.alarmAssignedUser}}</td>
73 </tr>
74 </tbody>
75 </table>
76 </div>
77 </div>
78 </div>
79 <hr>
80 </div>
81 </div>
82</div>