40 lines
1.1 KiB
Handlebars
40 lines
1.1 KiB
Handlebars
|
{{#app-view class=(concat 'policy ' (if (or isAuthorized isEnabled) 'edit' 'list')) loading=isLoading authorized=isAuthorized enabled=isEnabled}}
|
||
|
{{#block-slot 'notification' as |status type|}}
|
||
|
{{partial 'dc/acls/policies/notifications'}}
|
||
|
{{/block-slot}}
|
||
|
{{#block-slot 'disabled'}}
|
||
|
{{partial 'dc/acls/disabled'}}
|
||
|
{{/block-slot}}
|
||
|
{{#block-slot 'authorization'}}
|
||
|
{{partial 'dc/acls/authorization'}}
|
||
|
{{/block-slot}}
|
||
|
{{#block-slot 'breadcrumbs'}}
|
||
|
<ol>
|
||
|
<li><a data-test-back href={{href-to 'dc.acls.policies'}}>All Policies</a></li>
|
||
|
</ol>
|
||
|
{{/block-slot}}
|
||
|
{{#block-slot 'header'}}
|
||
|
<h1>
|
||
|
{{#if isAuthorized }}
|
||
|
{{#if create }}
|
||
|
New Policy
|
||
|
{{else}}
|
||
|
{{#if (policy/is-management item)}}
|
||
|
View Policy
|
||
|
{{else}}
|
||
|
Edit Policy
|
||
|
{{/if}}
|
||
|
{{/if}}
|
||
|
{{else}}
|
||
|
Access Controls
|
||
|
{{/if}}
|
||
|
</h1>
|
||
|
{{/block-slot}}
|
||
|
{{#block-slot 'content'}}
|
||
|
{{#if (policy/is-management item)}}
|
||
|
{{ partial 'dc/acls/policies/view'}}
|
||
|
{{else}}
|
||
|
{{ partial 'dc/acls/policies/form'}}
|
||
|
{{/if}}
|
||
|
{{/block-slot}}
|
||
|
{{/app-view}}
|