2019-05-24 06:04:58 +00:00
|
|
|
<div class="actionBar" authorization="DockerServiceUpdate, DockerServiceDelete, DockerServiceCreate">
|
2018-06-11 13:13:19 +00:00
|
|
|
<div class="btn-group" role="group" aria-label="...">
|
2019-05-24 06:04:58 +00:00
|
|
|
<button ng-if="$ctrl.showUpdateAction" type="button" class="btn btn-sm btn-primary" authorization="DockerServiceUpdate"
|
2018-06-11 13:13:19 +00:00
|
|
|
ng-disabled="$ctrl.selectedItemCount === 0" ng-click="$ctrl.updateAction($ctrl.selectedItems)">
|
|
|
|
<i class="fa fa-sync space-right" aria-hidden="true"></i>Update
|
|
|
|
</button>
|
2019-05-24 06:04:58 +00:00
|
|
|
<button type="button" class="btn btn-sm btn-danger" authorization="DockerServiceDelete"
|
2018-06-11 13:13:19 +00:00
|
|
|
ng-disabled="$ctrl.selectedItemCount === 0" ng-click="$ctrl.removeAction($ctrl.selectedItems)">
|
|
|
|
<i class="fa fa-trash-alt space-right" aria-hidden="true"></i>Remove
|
|
|
|
</button>
|
|
|
|
</div>
|
2019-05-24 06:04:58 +00:00
|
|
|
<button type="button" class="btn btn-sm btn-primary" ui-sref="docker.services.new" ng-if="$ctrl.showAddAction" authorization="DockerServiceCreate">
|
2018-06-11 13:13:19 +00:00
|
|
|
<i class="fa fa-plus space-right" aria-hidden="true"></i>Add service
|
|
|
|
</button>
|
|
|
|
</div>
|