notifications_list.html 1.2 KB

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