alert_log.html 623 B

1234567891011121314151617181920212223242526272829
  1. <navbar icon="fa fa-fw fa-list" title="Alerts" title-url="alerting">
  2. </navbar>
  3. <div class="page-container" >
  4. <div class="page-header">
  5. <h1>Alert history for {{ctrl.alert.title}}</h1>
  6. </div>
  7. <table class="filter-table">
  8. <thead>
  9. <th style="width: 68px">Status</th>
  10. <th style="width: 160px">Time</th>
  11. <th>Description</th>
  12. </thead>
  13. <tr ng-repeat="alertLog in ctrl.alertLogs">
  14. <td>
  15. <i class="icon-gf {{alertLog.iconCss}}"></i>
  16. </td>
  17. <td>
  18. {{alertLog.humanTime}}
  19. </td>
  20. <td>
  21. {{alertLog.info}}
  22. </td>
  23. </tr>
  24. </table>
  25. </div>