notifications_list.html 917 B

12345678910111213141516171819202122232425262728293031323334353637
  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. <button class="btn btn-success pull-right">
  7. <i class="fa fa-plus"></i>
  8. New Notification
  9. </button>
  10. </div>
  11. <table class="grafana-options-table">
  12. <thead>
  13. <th style="min-width: 200px"><strong>Name</strong></th>
  14. <th style="width: 1%">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. {{alert.name}}
  21. </a>
  22. </td>
  23. <td class="text-center">
  24. {{notification.type}}
  25. </td>
  26. <td class="text-center">
  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. </td>
  32. </tr>
  33. </table>
  34. </div>