Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
23 Zeilen
Kein EOL
680 B
Handlebars
23 Zeilen
Kein EOL
680 B
Handlebars
<div class="supplier-authorize">
|
|
{{#if authorized}}
|
|
{{conditional-loading-spinner size="small" condition=unauthorizing}}
|
|
<DButton
|
|
class="deauthorize"
|
|
@title={{"admin.wizard.subscription.deauthorize.title"}}
|
|
@disabled={{unauthorizing}}
|
|
@action={{this.deauthorize}}
|
|
>
|
|
{{i18n "admin.wizard.subscription.deauthorize.label"}}
|
|
</DButton>
|
|
{{else}}
|
|
<DButton
|
|
@icon="id-card"
|
|
class="btn-primary"
|
|
@label="admin.wizard.subscription.authorize.label"
|
|
@title="admin.wizard.subscription.authorize.title"
|
|
@action={{this.authorize}}
|
|
/>
|
|
{{/if}}
|
|
<WizardSubscriptionBadge />
|
|
<WizardSubscriptionCta />
|
|
</div> |