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="...">
|
2020-04-10 21:54:53 +00:00
|
|
|
<button
|
|
|
|
ng-if="$ctrl.showUpdateAction"
|
|
|
|
type="button"
|
|
|
|
class="btn btn-sm btn-primary"
|
|
|
|
authorization="DockerServiceUpdate"
|
|
|
|
ng-disabled="$ctrl.selectedItemCount === 0"
|
|
|
|
ng-click="$ctrl.updateAction($ctrl.selectedItems)"
|
|
|
|
>
|
2018-06-11 13:13:19 +00:00
|
|
|
<i class="fa fa-sync space-right" aria-hidden="true"></i>Update
|
|
|
|
</button>
|
2020-04-10 21:54:53 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="btn btn-sm btn-danger"
|
|
|
|
authorization="DockerServiceDelete"
|
|
|
|
ng-disabled="$ctrl.selectedItemCount === 0"
|
|
|
|
ng-click="$ctrl.removeAction($ctrl.selectedItems)"
|
|
|
|
>
|
2018-06-11 13:13:19 +00:00
|
|
|
<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>
|