2023-09-04 15:55:51 +02:00
|
|
|
<div class="supplier-authorize">
|
2023-11-17 16:17:10 +01:00
|
|
|
<WizardSubscriptionBadge />
|
2023-09-04 15:55:51 +02:00
|
|
|
{{#if authorized}}
|
|
|
|
{{conditional-loading-spinner size="small" condition=unauthorizing}}
|
2023-09-24 13:52:42 +02:00
|
|
|
<DButton
|
2023-09-22 15:35:50 +02:00
|
|
|
class="deauthorize"
|
2023-10-06 17:37:24 +02:00
|
|
|
@title="admin.wizard.subscription.deauthorize.title"
|
2023-09-24 13:52:42 +02:00
|
|
|
@disabled={{unauthorizing}}
|
|
|
|
@action={{this.deauthorize}}
|
2023-09-22 15:35:50 +02:00
|
|
|
>
|
2023-09-28 18:56:27 +02:00
|
|
|
{{i18n "admin.wizard.subscription.deauthorize.label"}}
|
2023-09-24 13:54:05 +02:00
|
|
|
</DButton>
|
2023-09-04 15:55:51 +02:00
|
|
|
{{else}}
|
2023-09-24 13:52:42 +02:00
|
|
|
<DButton
|
|
|
|
@icon="id-card"
|
2023-09-04 15:55:51 +02:00
|
|
|
class="btn-primary"
|
2023-10-06 17:37:24 +02:00
|
|
|
@label="admin.wizard.subscription.authorize.label"
|
|
|
|
@title="admin.wizard.subscription.authorize.title"
|
2023-09-24 13:52:42 +02:00
|
|
|
@action={{this.authorize}}
|
|
|
|
/>
|
2023-09-04 15:55:51 +02:00
|
|
|
{{/if}}
|
|
|
|
</div>
|