mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 11:50:42 -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
15 lines
660 B
HTML
15 lines
660 B
HTML
<label class="at-InputLabel">
|
|
<span ng-if="state.required" class="at-InputLabel-required">*</span>
|
|
<span class="at-InputLabel-name">{{::state.label}}</span>
|
|
<at-popover state="state"></at-popover>
|
|
<span ng-if="state._displayHint" class="at-InputLabel-hint">{{::state._hint}}</span>
|
|
<div ng-if="state._displayPromptOnLaunch" class="at-InputLabel-checkbox pull-right">
|
|
<label class="at-InputLabel-checkboxLabel">
|
|
<input type="checkbox"
|
|
ng-model="state._promptOnLaunch"
|
|
ng-change="vm.togglePromptOnLaunch()" />
|
|
<p>Prompt on launch</p>
|
|
</label>
|
|
</div>
|
|
</label>
|