| 1234567891011121314151617181920212223242526272829 |
- <navbar icon="fa fa-fw fa-list" title="Alerts" title-url="alerting">
- </navbar>
- <div class="page-container" >
- <div class="page-header">
- <h1>Alert history for {{ctrl.alert.title}}</h1>
- </div>
- <table class="filter-table">
- <thead>
- <th style="width: 68px">Status</th>
- <th style="width: 160px">Time</th>
- <th>Description</th>
- </thead>
- <tr ng-repeat="alertLog in ctrl.alertLogs">
- <td>
- <i class="icon-gf {{alertLog.iconCss}}"></i>
- </td>
- <td>
- {{alertLog.humanTime}}
- </td>
- <td>
- {{alertLog.info}}
- </td>
- </tr>
- </table>
- </div>
|