2017-06-02 07:00:42 -05:00
|
|
|
<navbar model="ctrl.navModel"></navbar>
|
2016-06-16 07:29:20 -05:00
|
|
|
|
|
|
|
<div class="page-container" >
|
|
|
|
<div class="page-header">
|
2017-08-15 13:53:31 -05:00
|
|
|
<page-h1 model="ctrl.navModel"></page-h1>
|
2017-08-15 13:24:16 -05:00
|
|
|
|
2017-10-15 05:25:31 -05:00
|
|
|
<a href="alerting/notification/new" class="btn btn-success pull-right">
|
2017-01-06 05:04:25 -06:00
|
|
|
New Channel
|
2016-06-16 08:21:44 -05:00
|
|
|
</a>
|
2016-06-16 07:29:20 -05:00
|
|
|
</div>
|
|
|
|
|
2016-09-05 14:33:05 -05:00
|
|
|
<table class="grafana-options-table">
|
2016-06-16 07:29:20 -05:00
|
|
|
<thead>
|
|
|
|
<th style="min-width: 200px"><strong>Name</strong></th>
|
2016-06-16 08:21:44 -05:00
|
|
|
<th style="min-width: 100px">Type</th>
|
2016-06-16 07:29:20 -05:00
|
|
|
<th style="width: 1%"></th>
|
|
|
|
</thead>
|
|
|
|
<tr ng-repeat="notification in ctrl.notifications">
|
|
|
|
<td>
|
2016-06-16 09:06:40 -05:00
|
|
|
<a href="alerting/notification/{{notification.id}}/edit">
|
2016-06-16 08:21:44 -05:00
|
|
|
{{notification.name}}
|
2016-06-16 07:29:20 -05:00
|
|
|
</a>
|
|
|
|
</td>
|
2016-06-16 08:21:44 -05:00
|
|
|
<td>
|
2016-06-16 07:29:20 -05:00
|
|
|
{{notification.type}}
|
|
|
|
</td>
|
2016-09-05 14:33:05 -05:00
|
|
|
<td class="text-right">
|
|
|
|
<span class="btn btn-secondary btn-small" ng-show="notification.isDefault == true">
|
|
|
|
default
|
|
|
|
</span>
|
2016-06-16 07:29:20 -05:00
|
|
|
<a href="alerting/notification/{{notification.id}}/edit" class="btn btn-inverse btn-small">
|
|
|
|
<i class="fa fa-edit"></i>
|
|
|
|
edit
|
|
|
|
</a>
|
2016-06-16 08:21:44 -05:00
|
|
|
<a ng-click="ctrl.deleteNotification(notification.id)" class="btn btn-danger btn-small">
|
|
|
|
<i class="fa fa-remove"></i>
|
|
|
|
</a>
|
2016-06-16 07:29:20 -05:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</div>
|