discourse-subscriptions/assets/javascripts/discourse/templates/admin/plugins-discourse-subscript...

33 lines
1000 B
Handlebars

<table class="table discourse-patrons-table">
<thead>
<th>{{i18n "discourse_subscriptions.admin.plans.plan.plan_id"}}</th>
<th>{{i18n "discourse_subscriptions.admin.plans.plan.nickname.title"}}</th>
<th>{{i18n "discourse_subscriptions.admin.plans.plan.interval"}}</th>
<th>{{i18n "discourse_subscriptions.admin.plans.plan.amount"}}</th>
<th></th>
</thead>
<tbody>
{{#each model as |plan|}}
<tr>
<td>{{plan.id}}</td>
<td>{{plan.nickname}}</td>
<td>{{plan.interval}}</td>
<td>{{plan.unit_amount}}</td>
<td class="td-right">
{{d-button
action=(action "editPlan" plan.id)
icon="far-edit"
class="btn no-text btn-icon"
}}
{{d-button
action=(route-action "destroyPlan")
actionParam=plan
icon="trash-alt"
class="btn-danger btn no-text btn-icon"
}}
</td>
</tr>
{{/each}}
</tbody>
</table>