notifications_list.html 1.1 KB

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