mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-01 04:11:56 -05:00
22 lines
1.2 KiB
HTML
22 lines
1.2 KiB
HTML
<div class="Panel copyMove-panel">
|
|
<div class="Form-header">
|
|
<div class="Form-title ng-binding">{{item.name}}</div>
|
|
</div>
|
|
<div class="form-group copyMove-choices clearfix">
|
|
<label class="radio-inline" ng-disabled="atRootLevel || targetRootGroup">
|
|
<input type="radio" ng-model="submitMode" value="copy" class="ng-pristine ng-valid ng-touched" ng-disabled="atRootLevel || targetRootGroup"> Copy
|
|
</label>
|
|
<label class="radio-inline">
|
|
<input type="radio" ng-model="submitMode" value="move" class="ng-pristine ng-untouched ng-valid"> Move
|
|
</label>
|
|
</div>
|
|
<div id="copyMove-list" ui-view="copyMoveList"></div>
|
|
<div class="copyMove-root form-group pull-left" ng-hide="atRootLevel">
|
|
<span><input type="checkbox" ng-model="targetRootGroup" ng-change="toggleTargetRootGroup()"> Use the inventory root</span>
|
|
</div>
|
|
<div class="copyMove-buttons">
|
|
<button type="button" class="pull-right btn btn-sm Form-saveButton" ng-disabled="!selected" ng-click="formSave()">Save</button>
|
|
<button type="button" class="pull-right btn btn-sm btn-default Form-cancelButton" ng-click="formCancel()">Cancel</button>
|
|
</div>
|
|
</div>
|