2019-05-01 18:09:29 +00:00
|
|
|
{{yield}}
|
2020-05-11 15:37:11 +00:00
|
|
|
<fieldset class="role-form" data-test-role-form>
|
2019-05-01 18:09:29 +00:00
|
|
|
<label class="type-text{{if item.error.Name ' has-error'}}">
|
|
|
|
<span>Name</span>
|
|
|
|
<input type="text" value={{item.Name}} name="role[Name]" autofocus="autofocus" oninput={{action 'change'}} />
|
|
|
|
<em>
|
|
|
|
Maximum 256 characters. May only include letters (uppercase and/or lowercase) and/or numbers. Must be unique.
|
|
|
|
</em>
|
|
|
|
{{#if item.error.Name}}
|
|
|
|
<strong>{{item.error.Name.validation}}</strong>
|
|
|
|
{{/if}}
|
|
|
|
</label>
|
|
|
|
<label class="type-text">
|
|
|
|
<span>Description (Optional)</span>
|
|
|
|
<textarea name="role[Description]" value={{item.Description}} oninput={{action 'change'}}></textarea>
|
|
|
|
</label>
|
|
|
|
</fieldset>
|
|
|
|
{{!TODO: temporary policies id, look at the inception token modals and get rid of id="policies" and use something else}}
|
|
|
|
<fieldset id="policies" class="policies">
|
|
|
|
<h2>Policies</h2>
|
2020-01-15 09:15:54 +00:00
|
|
|
{{#yield-slot name='policy' params=(block-params item)}}
|
2019-05-01 18:09:29 +00:00
|
|
|
{{yield}}
|
|
|
|
{{else}}
|
2020-02-19 19:26:38 +00:00
|
|
|
<PolicySelector @dc={{dc}} @nspace={{nspace}} @items={{item.Policies}} />
|
2019-05-01 18:09:29 +00:00
|
|
|
{{/yield-slot}}
|
|
|
|
</fieldset>
|