2024-11-20 12:34:34 -05:00
|
|
|
{{#if this.model.unconfigured}}
|
2021-07-04 15:53:55 -04:00
|
|
|
<p>{{i18n "discourse_subscriptions.admin.unconfigured"}}</p>
|
2022-06-11 06:54:30 -04:00
|
|
|
<p>
|
2023-01-04 07:39:58 -05:00
|
|
|
<a href="https://meta.discourse.org/t/discourse-subscriptions/140818/">
|
2022-06-11 06:54:30 -04:00
|
|
|
{{i18n "discourse_subscriptions.admin.on_meta"}}
|
|
|
|
</a>
|
|
|
|
</p>
|
2021-01-13 12:47:22 -05:00
|
|
|
{{else}}
|
2024-11-20 12:34:34 -05:00
|
|
|
{{#if this.model}}
|
2021-01-13 12:47:22 -05:00
|
|
|
<table class="table discourse-patrons-table">
|
|
|
|
<thead>
|
2021-07-04 15:53:55 -04:00
|
|
|
<th>{{i18n "discourse_subscriptions.admin.coupons.code"}}</th>
|
|
|
|
<th>{{i18n "discourse_subscriptions.admin.coupons.discount"}}</th>
|
|
|
|
<th>{{i18n "discourse_subscriptions.admin.coupons.times_redeemed"}}</th>
|
|
|
|
<th>{{i18n "discourse_subscriptions.admin.coupons.active"}}</th>
|
|
|
|
<th>{{i18n "discourse_subscriptions.admin.coupons.actions"}}</th>
|
2021-01-13 12:47:22 -05:00
|
|
|
</thead>
|
2021-07-04 15:53:55 -04:00
|
|
|
<tbody>
|
2024-11-20 12:34:34 -05:00
|
|
|
{{#each this.model as |coupon|}}
|
2021-07-04 15:53:55 -04:00
|
|
|
<tr>
|
|
|
|
<td>{{coupon.code}}</td>
|
|
|
|
<td>{{coupon.discount}}</td>
|
|
|
|
<td>{{coupon.times_redeemed}}</td>
|
2022-06-11 06:54:30 -04:00
|
|
|
<td>
|
2023-05-02 10:24:28 -04:00
|
|
|
<Input
|
|
|
|
@type="checkbox"
|
|
|
|
@checked={{coupon.active}}
|
|
|
|
{{on "click" (action "toggleActive" coupon)}}
|
|
|
|
/>
|
2022-06-11 06:54:30 -04:00
|
|
|
</td>
|
2021-07-04 15:53:55 -04:00
|
|
|
<td>
|
2023-05-02 10:24:28 -04:00
|
|
|
<DButton
|
2023-05-08 10:36:11 -04:00
|
|
|
@action={{action "deleteCoupon"}}
|
2023-05-02 10:24:28 -04:00
|
|
|
@actionParam={{coupon}}
|
|
|
|
@icon="trash-alt"
|
2021-07-04 15:53:55 -04:00
|
|
|
class="btn-danger btn btn-icon btn-no-text"
|
2023-05-02 10:24:28 -04:00
|
|
|
/>
|
2021-07-04 15:53:55 -04:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</tbody>
|
2021-01-13 12:47:22 -05:00
|
|
|
</table>
|
|
|
|
{{/if}}
|
|
|
|
|
2024-11-20 12:34:34 -05:00
|
|
|
{{#unless this.creating}}
|
2023-05-02 10:24:28 -04:00
|
|
|
<DButton
|
2023-05-08 10:36:11 -04:00
|
|
|
@action={{action "openCreateForm"}}
|
2023-05-02 10:24:28 -04:00
|
|
|
@label="discourse_subscriptions.admin.coupons.create"
|
|
|
|
@title="discourse_subscriptions.admin.coupons.create"
|
|
|
|
@icon="plus"
|
2021-07-04 15:53:55 -04:00
|
|
|
class="btn btn-icon btn-primary create-coupon"
|
2023-05-02 10:24:28 -04:00
|
|
|
/>
|
2021-01-13 12:47:22 -05:00
|
|
|
{{/unless}}
|
|
|
|
|
2024-11-20 12:34:34 -05:00
|
|
|
{{#if this.creating}}
|
2023-05-28 10:32:27 -04:00
|
|
|
<CreateCouponForm
|
|
|
|
@cancel={{action "closeCreateForm"}}
|
|
|
|
@create={{action "createNewCoupon"}}
|
|
|
|
/>
|
2021-01-13 12:47:22 -05:00
|
|
|
{{/if}}
|
2023-01-04 07:39:58 -05:00
|
|
|
{{/if}}
|