mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-09 13:04:49 +00:00
22 lines
450 B
Handlebars
22 lines
450 B
Handlebars
|
|
<table class="table discourse-patrons-admin">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{{#each model as |subscription|}}
|
|
<tr>
|
|
<td>{{subscription.id}}</td>
|
|
<td>
|
|
{{#link-to 'adminPlugins.discourse-patrons.plans.show' subscription.plan.id}}
|
|
{{subscription.plan.id}}
|
|
{{/link-to}}
|
|
</td>
|
|
<td>{{subscription.status}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</table>
|