| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <page-header model="ctrl.navModel"></page-header>
- <div class="page-container page-body">
- <div class="page-action-bar">
- <div class="page-action-bar__spacer">
- </div>
- <a href="alerting/notification/new" class="btn btn-success">
- <i class="fa fa-plus"></i>
- New Channel
- </a>
- </div>
- <table class="grafana-options-table">
- <thead>
- <th style="min-width: 200px"><strong>Name</strong></th>
- <th style="min-width: 100px">Type</th>
- <th style="width: 1%"></th>
- </thead>
- <tr ng-repeat="notification in ctrl.notifications">
- <td>
- <a href="alerting/notification/{{notification.id}}/edit">
- {{notification.name}}
- </a>
- </td>
- <td>
- {{notification.type}}
- </td>
- <td class="text-right">
- <span class="btn btn-secondary btn-small" ng-show="notification.isDefault == true">
- default
- </span>
- <a href="alerting/notification/{{notification.id}}/edit" class="btn btn-inverse btn-small">
- <i class="fa fa-edit"></i>
- edit
- </a>
- <a ng-click="ctrl.deleteNotification(notification.id)" class="btn btn-danger btn-small">
- <i class="fa fa-remove"></i>
- </a>
- </td>
- </tr>
- </table>
- </div>
|