2020-01-28 14:25:52 +00:00
|
|
|
{{#if isAuthorized }}
|
|
|
|
{{#if create }}
|
|
|
|
{{title 'New Policy'}}
|
|
|
|
{{else}}
|
|
|
|
{{title 'Edit Policy'}}
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
{{title 'Access Controls'}}
|
|
|
|
{{/if}}
|
2020-04-08 17:03:18 +00:00
|
|
|
<AppView
|
|
|
|
@class={{concat "policy " (if isAuthorized "edit" "list")}}
|
|
|
|
@loading={{isLoading}}
|
|
|
|
@authorized={{isAuthorized}}
|
|
|
|
@enabled={{isEnabled}}
|
|
|
|
>
|
2020-05-19 16:18:04 +00:00
|
|
|
<BlockSlot @name="notification" as |status type item error|>
|
2018-10-19 15:17:02 +00:00
|
|
|
{{partial 'dc/acls/policies/notifications'}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="disabled">
|
2018-10-19 15:17:02 +00:00
|
|
|
{{partial 'dc/acls/disabled'}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="authorization">
|
2018-10-19 15:17:02 +00:00
|
|
|
{{partial 'dc/acls/authorization'}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="breadcrumbs">
|
2018-10-19 15:17:02 +00:00
|
|
|
<ol>
|
|
|
|
<li><a data-test-back href={{href-to 'dc.acls.policies'}}>All Policies</a></li>
|
|
|
|
</ol>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="header">
|
2018-10-19 15:17:02 +00:00
|
|
|
<h1>
|
|
|
|
{{#if isAuthorized }}
|
|
|
|
{{#if create }}
|
|
|
|
New Policy
|
|
|
|
{{else}}
|
2019-05-01 18:09:29 +00:00
|
|
|
{{#if (eq (policy/typeof item) 'policy-management')}}
|
2018-10-19 15:17:02 +00:00
|
|
|
View Policy
|
|
|
|
{{else}}
|
|
|
|
Edit Policy
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
Access Controls
|
|
|
|
{{/if}}
|
|
|
|
</h1>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="content">
|
2019-05-01 18:09:29 +00:00
|
|
|
{{#if (eq (policy/typeof item) 'policy-management')}}
|
2018-10-19 15:17:02 +00:00
|
|
|
{{ partial 'dc/acls/policies/view'}}
|
|
|
|
{{else}}
|
|
|
|
{{ partial 'dc/acls/policies/form'}}
|
|
|
|
{{/if}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
</AppView>
|