mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-13 15:04:53 +00:00
0d82bcf37e
* Plans controller * Subscription controller * Clean admin controller * Ember Plans route * Index page * New Plans * Translations
19 lines
279 B
Handlebars
19 lines
279 B
Handlebars
|
|
<h3>Subscription Plans</h3>
|
|
|
|
<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 |plan|}}
|
|
<tr>
|
|
|
|
</tr>
|
|
{{/each}}
|
|
</table>
|