mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-07-05 05:52:12 +00:00
subscriptions list
This commit is contained in:
parent
c845f3be4b
commit
01b78b31df
@ -2,7 +2,7 @@
|
|||||||
<p class="btn-right">
|
<p class="btn-right">
|
||||||
{{#link-to 'adminPlugins.discourse-patrons.plans.show' 'new' class="btn btn-primary"}}
|
{{#link-to 'adminPlugins.discourse-patrons.plans.show' 'new' class="btn btn-primary"}}
|
||||||
{{d-icon "plus"}}
|
{{d-icon "plus"}}
|
||||||
<span>{{i18n 'discourse_patrons.admin.plans.new'}}</span>
|
<span>{{i18n 'discourse_patrons.admin.plans.operations.new'}}</span>
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -2,19 +2,15 @@
|
|||||||
<table class="table discourse-patrons-admin">
|
<table class="table discourse-patrons-admin">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th></th>
|
<th>{{i18n 'discourse_patrons.admin.subscriptions.subscription.subscription_id'}}</th>
|
||||||
<th></th>
|
<th>{{i18n 'discourse_patrons.admin.subscriptions.subscription.plan'}}</th>
|
||||||
<th></th>
|
<th>{{i18n 'discourse_patrons.admin.subscriptions.subscription.status'}}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
{{#each model as |subscription|}}
|
{{#each model as |subscription|}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{subscription.id}}</td>
|
<td>{{subscription.id}}</td>
|
||||||
<td>
|
<td>{{subscription.plan.id}}</td>
|
||||||
{{#link-to 'adminPlugins.discourse-patrons.plans.show' subscription.plan.id}}
|
|
||||||
{{subscription.plan.id}}
|
|
||||||
{{/link-to}}
|
|
||||||
</td>
|
|
||||||
<td>{{subscription.status}}</td>
|
<td>{{subscription.status}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
@ -88,3 +88,8 @@ en:
|
|||||||
amount: Amount
|
amount: Amount
|
||||||
subscriptions:
|
subscriptions:
|
||||||
title: Subscriptions
|
title: Subscriptions
|
||||||
|
subscription:
|
||||||
|
subscription_id: Subscription ID
|
||||||
|
user: User
|
||||||
|
plan: Plan
|
||||||
|
status: Status
|
||||||
|
Loading…
x
Reference in New Issue
Block a user