mirror of
https://github.com/ansible/awx.git
synced 2026-01-22 06:58:06 -03:30
* Bring UI/UX inline with recent changes * Use select components as a stopgap for credential_types and orgs * Add tabs to permissions view * Add Organization model
18 lines
764 B
HTML
18 lines
764 B
HTML
<div class="col-sm-{{::col}} at-InputContainer">
|
|
<div class="form-group at-u-flat">
|
|
<at-input-label></at-input-label>
|
|
|
|
<textarea class="form-control at-Input at-InputTextarea"
|
|
ng-model="state._value"
|
|
ng-class="{ 'at-Input--rejected': state._rejected }"
|
|
ng-attr-rows="{{::state._rows || 6 }}"
|
|
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>
|
|
|
|
<at-input-message></at-input-message>
|
|
</div>
|
|
</div>
|