mirror of
https://github.com/ansible/awx.git
synced 2026-01-22 23:18:03 -03:30
33 lines
1.4 KiB
HTML
33 lines
1.4 KiB
HTML
<div class="col-sm-{{::col}}">
|
|
<div class="form-group at-u-flat">
|
|
<at-input-label></at-input-label>
|
|
|
|
<div ng-class="{ 'input-group': edit }">
|
|
<span ng-if="edit" class="input-group-btn at-InputGroup-button">
|
|
<button ng-if="edit"
|
|
class="btn at-ButtonHollow--white at-Input-button"
|
|
ng-disabled="state._disabled || form.disabled"
|
|
ng-click="vm.toggle()">
|
|
{{ buttonText }}
|
|
</button>
|
|
</span>
|
|
<input ng-show="ssh"
|
|
class="at-InputFile--hidden"
|
|
ng-class="{'at-InputFile--drag': drag }"
|
|
type="file"
|
|
name="files" />
|
|
<textarea class="form-control at-Input at-Textarea"
|
|
ng-model="state._value"
|
|
ng-class="{ 'at-Input--rejected': state._rejected }"
|
|
ng-attr-maxlength="{{ state.max_length || undefined }}"
|
|
ng-attr-tabindex="{{ tab || undefined }}"
|
|
ng-attr-placeholder="{{::state._placeholder || undefined }}"
|
|
ng-change="vm.check()"
|
|
ng-disabled="state._disabled || form.disabled" />
|
|
</textarea>
|
|
</div>
|
|
|
|
<at-input-message></at-input-message>
|
|
</div>
|
|
</div>
|