2020-01-28 14:25:52 +00:00
|
|
|
{{#if isAuthorized }}
|
|
|
|
{{#if item.ID}}
|
2020-11-18 11:11:30 +00:00
|
|
|
{{page-title 'Edit Role'}}
|
2020-01-28 14:25:52 +00:00
|
|
|
{{else}}
|
2020-11-18 11:11:30 +00:00
|
|
|
{{page-title 'New Role'}}
|
2020-01-28 14:25:52 +00:00
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
2020-11-18 11:11:30 +00:00
|
|
|
{{page-title 'Access Controls'}}
|
2020-01-28 14:25:52 +00:00
|
|
|
{{/if}}
|
2020-04-08 17:03:18 +00:00
|
|
|
<AppView
|
|
|
|
@authorized={{isAuthorized}}
|
|
|
|
@enabled={{isEnabled}}
|
|
|
|
>
|
2020-05-19 16:18:04 +00:00
|
|
|
<BlockSlot @name="notification" as |status type item error|>
|
2020-10-19 16:31:01 +00:00
|
|
|
<Consul::Role::Notifications
|
|
|
|
@type={{type}}
|
|
|
|
@status={{status}}
|
|
|
|
@item={{item}}
|
|
|
|
@error={{error}}
|
|
|
|
/>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="breadcrumbs">
|
2019-05-01 18:09:29 +00:00
|
|
|
<ol>
|
|
|
|
<li><a data-test-back href={{href-to 'dc.acls.roles'}}>All Roles</a></li>
|
|
|
|
</ol>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="header">
|
2019-05-01 18:09:29 +00:00
|
|
|
<h1>
|
|
|
|
{{#if isAuthorized }}
|
|
|
|
{{#if create }}
|
|
|
|
New Role
|
|
|
|
{{else}}
|
|
|
|
Edit Role
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
Access Controls
|
|
|
|
{{/if}}
|
|
|
|
</h1>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="content">
|
2020-11-30 14:42:57 +00:00
|
|
|
{{#if (not create) }}
|
|
|
|
<div class="definition-table">
|
|
|
|
<dl>
|
|
|
|
<dt>Role ID</dt>
|
|
|
|
<dd>
|
|
|
|
<CopyButton @value={{item.ID}} @name="Role ID" @position="top-start" /> {{item.ID}}
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2019-05-01 18:09:29 +00:00
|
|
|
{{ partial 'dc/acls/roles/form'}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
</AppView>
|