notifications_list.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <navbar icon="fa fa-fw fa-list" title="Alerting" title-url="alerting">
  2. </navbar>
  3. <div class="page-container" >
  4. <div class="page-header">
  5. <h1>Alert notifications</h1>
  6. <a href="alerting/notification/new" class="btn btn-success pull-right">
  7. <i class="fa fa-plus"></i>
  8. New Notification
  9. </a>
  10. </div>
  11. <table class="grafana-options-table" style="/*width: 600px;*/">
  12. <thead>
  13. <th style="min-width: 200px"><strong>Name</strong></th>
  14. <th style="min-width: 100px">Type</th>
  15. <th style="width: 1%"></th>
  16. </thead>
  17. <tr ng-repeat="notification in ctrl.notifications">
  18. <td>
  19. <a href="alerting/notification{{notification.id}}/edit">
  20. {{notification.name}}
  21. </a>
  22. </td>
  23. <td>
  24. {{notification.type}}
  25. </td>
  26. <td>
  27. <a href="alerting/notification/{{notification.id}}/edit" class="btn btn-inverse btn-small">
  28. <i class="fa fa-edit"></i>
  29. edit
  30. </a>
  31. <a ng-click="ctrl.deleteNotification(notification.id)" class="btn btn-danger btn-small">
  32. <i class="fa fa-remove"></i>
  33. </a>
  34. </td>
  35. </tr>
  36. </table>
  37. </div>