2016-06-06 09:17:29 +02:00
|
|
|
<navbar icon="fa fa-fw fa-list" title="Alerts" title-url="alerting">
|
2016-04-28 11:42:03 +02:00
|
|
|
</navbar>
|
|
|
|
|
|
|
|
|
|
<div class="page-container" >
|
|
|
|
|
<div class="page-header">
|
|
|
|
|
<h1>Alert history for {{ctrl.alert.title}}</h1>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<table class="filter-table">
|
|
|
|
|
<thead>
|
2016-04-28 15:13:42 +02:00
|
|
|
<th style="width: 68px">Status</th>
|
2016-05-02 15:20:58 +02:00
|
|
|
<th style="width: 160px">Time</th>
|
2016-04-28 11:42:03 +02:00
|
|
|
<th>Description</th>
|
|
|
|
|
</thead>
|
|
|
|
|
<tr ng-repeat="alertLog in ctrl.alertLogs">
|
|
|
|
|
<td>
|
2016-05-02 15:20:58 +02:00
|
|
|
<i class="icon-gf {{alertLog.iconCss}}"></i>
|
2016-04-28 11:42:03 +02:00
|
|
|
</td>
|
|
|
|
|
<td>
|
2016-05-02 15:20:58 +02:00
|
|
|
{{alertLog.humanTime}}
|
2016-04-28 11:42:03 +02:00
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
{{alertLog.info}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|