mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-16 00:14:47 +00:00
40 lines
805 B
Handlebars
40 lines
805 B
Handlebars
|
{{#if includePrefix}}
|
|||
|
<span>{{i18n 'discourse_donations.invoice_prefix'}}</span>
|
|||
|
{{/if}}
|
|||
|
|
|||
|
<span>{{currency}}</span>
|
|||
|
|
|||
|
<span>{{amount}}</span>
|
|||
|
|
|||
|
<span>{{period}}</span>
|
|||
|
|
|||
|
{{#if invoice}}
|
|||
|
<a href='{{data.invoiceLink}}' target='_blank'>({{i18n 'discourse_donations.invoice'}})</a>
|
|||
|
{{/if}}
|
|||
|
|
|||
|
{{#if currentUser}}
|
|||
|
{{#if subscription}}
|
|||
|
{{#if updating}}
|
|||
|
{{loading-spinner size='small'}}
|
|||
|
{{else}}
|
|||
|
{{#unless canceled}}
|
|||
|
<a {{action 'cancelSubscription'}}>
|
|||
|
{{i18n 'cancel'}}
|
|||
|
</a>
|
|||
|
{{/unless}}
|
|||
|
{{/if}}
|
|||
|
{{/if}}
|
|||
|
{{/if}}
|
|||
|
|
|||
|
{{#if receiptSent}}
|
|||
|
<span>–</span>
|
|||
|
<span>{{i18n 'discourse_donations.receipt' email=customer.email}}</span>
|
|||
|
{{/if}}
|
|||
|
|
|||
|
{{#if new}}
|
|||
|
<span class="new-flag">
|
|||
|
{{d-icon 'circle'}}
|
|||
|
<span>{{i18n 'new_item'}}</span>
|
|||
|
</span>
|
|||
|
{{/if}}
|