mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-05 17:19:51 +00:00
23 lines
407 B
Handlebars
23 lines
407 B
Handlebars
|
|
<h3>Subscription Plans</h3>
|
|
|
|
{{#d-button action="createSubscriptionPlan" class="btn btn-primary btn-payment btn-discourse-patrons"}}
|
|
New
|
|
{{/d-button}}
|
|
|
|
<table class="table discourse-patrons-admin">
|
|
<thead>
|
|
<tr>
|
|
<th>Plan Name</th>
|
|
<th>Interval</th>
|
|
<th>Product</th>
|
|
<th>Amount</th>
|
|
</tr>
|
|
</thead>
|
|
{{#each model as |payment|}}
|
|
<tr>
|
|
|
|
</tr>
|
|
{{/each}}
|
|
</table>
|