2021-07-04 15:53:55 -04:00
|
|
|
<h3>{{i18n "discourse_subscriptions.admin.dashboard.title"}}</h3>
|
2019-09-23 01:01:03 -04:00
|
|
|
|
2019-10-27 23:05:58 -04:00
|
|
|
{{#load-more selector=".discourse-patrons-table tr" action=(action "loadMore")}}
|
2019-09-23 01:01:03 -04:00
|
|
|
{{#if model}}
|
2019-10-27 23:05:58 -04:00
|
|
|
<table class="table discourse-patrons-table">
|
2019-09-23 01:01:03 -04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2022-06-11 06:54:30 -04:00
|
|
|
<th>
|
|
|
|
{{i18n "discourse_subscriptions.admin.dashboard.table.head.user"}}
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
{{i18n
|
|
|
|
"discourse_subscriptions.admin.dashboard.table.head.payment_intent"
|
|
|
|
}}
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
{{i18n
|
|
|
|
"discourse_subscriptions.admin.dashboard.table.head.receipt_email"
|
|
|
|
}}
|
|
|
|
</th>
|
|
|
|
<th
|
|
|
|
role="button"
|
|
|
|
onclick={{action "orderPayments" "created_at"}}
|
|
|
|
class="sortable"
|
|
|
|
>
|
|
|
|
{{i18n "created"}}
|
|
|
|
</th>
|
|
|
|
<th
|
|
|
|
role="button"
|
|
|
|
onclick={{action "orderPayments" "amount"}}
|
|
|
|
class="sortable amount"
|
|
|
|
>
|
|
|
|
{{i18n "discourse_subscriptions.admin.dashboard.table.head.amount"}}
|
|
|
|
</th>
|
2019-09-23 01:01:03 -04:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2021-07-04 15:53:55 -04:00
|
|
|
<tbody>
|
|
|
|
{{#each model as |payment|}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{{#link-to "adminUser.index" payment.user_id payment.username}}
|
|
|
|
{{payment.username}}
|
|
|
|
{{/link-to}}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{#link-to "patrons.show" payment.payment_intent_id}}
|
|
|
|
{{html-safe payment.payment_intent_id}}
|
|
|
|
{{/link-to}}
|
|
|
|
</td>
|
|
|
|
<td>{{payment.receipt_email}}</td>
|
|
|
|
<td>{{html-safe (format-duration payment.created_at_age)}}</td>
|
|
|
|
<td class="amount">{{payment.amount_currency}}</td>
|
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</tbody>
|
2019-09-23 01:01:03 -04:00
|
|
|
</table>
|
|
|
|
{{/if}}
|
2023-01-04 07:39:58 -05:00
|
|
|
{{/load-more}}
|