ce0ffdd077
Co-authored-by: Mike Nomitch <mail@mikenomitch.com>
29 lines
733 B
Handlebars
29 lines
733 B
Handlebars
<Breadcrumb @crumb={{hash label=this.model.name args=(array "policies.policy" this.model.name)}} />
|
|
|
|
{{page-title "Policy"}}
|
|
<section class="section">
|
|
<h1 class="title with-flex" data-test-title>
|
|
<div>
|
|
{{this.model.name}}
|
|
</div>
|
|
{{#if (can "destroy policy")}}
|
|
<div>
|
|
<TwoStepButton
|
|
data-test-delete-button
|
|
@idleText="Delete"
|
|
@cancelText="Cancel"
|
|
@confirmText="Yes, delete"
|
|
@confirmationMessage="Are you sure?"
|
|
@awaitingConfirmation={{this.deletePolicy.isRunning}}
|
|
@onConfirm={{perform this.deletePolicy}}
|
|
@onPrompt={{this.onDeletePrompt}}
|
|
@onCancel={{this.onDeleteCancel}}
|
|
/>
|
|
</div>
|
|
{{/if}}
|
|
</h1>
|
|
<PolicyEditor
|
|
@policy={{this.model}}
|
|
/>
|
|
</section>
|
|
{{outlet}} |