2021-01-13 12:47:22 -05:00
|
|
|
{{#if 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>
|
|
|
|
<a
|
|
|
|
href="https://meta.discourse.org/t/discourse-subscriptions/140818/"
|
|
|
|
>
|
|
|
|
{{i18n "discourse_subscriptions.admin.on_meta"}}
|
|
|
|
</a>
|
|
|
|
</p>
|
2021-01-13 12:47:22 -05:00
|
|
|
{{else}}
|
|
|
|
{{#if model}}
|
|
|
|
<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>
|
|
|
|
{{#each model as |coupon|}}
|
|
|
|
<tr>
|
|
|
|
<td>{{coupon.code}}</td>
|
|
|
|
<td>{{coupon.discount}}</td>
|
|
|
|
<td>{{coupon.times_redeemed}}</td>
|
2022-06-11 06:54:30 -04:00
|
|
|
<td>
|
|
|
|
{{input
|
|
|
|
type="checkbox"
|
|
|
|
checked=coupon.active
|
|
|
|
click=(action "toggleActive" coupon)
|
|
|
|
}}
|
|
|
|
</td>
|
2021-07-04 15:53:55 -04:00
|
|
|
<td>
|
|
|
|
{{d-button
|
|
|
|
action=(action "deleteCoupon")
|
|
|
|
actionParam=coupon
|
|
|
|
icon="trash-alt"
|
|
|
|
class="btn-danger btn btn-icon btn-no-text"
|
|
|
|
}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</tbody>
|
2021-01-13 12:47:22 -05:00
|
|
|
</table>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#unless creating}}
|
|
|
|
{{d-button
|
|
|
|
action=(action "openCreateForm")
|
|
|
|
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"
|
|
|
|
}}
|
2021-01-13 12:47:22 -05:00
|
|
|
{{/unless}}
|
|
|
|
|
|
|
|
{{#if creating}}
|
2022-06-11 06:54:30 -04:00
|
|
|
{{create-coupon-form
|
|
|
|
cancel=(action "closeCreateForm")
|
|
|
|
create=(action "createNewCoupon")
|
|
|
|
}}
|
2021-01-13 12:47:22 -05:00
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|