35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<div class="context-main-bg context-main p-3">
|
|
<legend class="text-center">Stripe Webhook Generation</legend>
|
|
<hr>
|
|
{ADMIN_BREADCRUMBS}
|
|
<p>Orphans are stripe prices that have unique lookup_keys used by the membership system, but have no products currently saved.</p>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 10%">price id</th>
|
|
<th style="width: 10%">amount</th>
|
|
<th style="width: 50%">lookup key</th>
|
|
<th style="width: 10%">url</th>
|
|
<th style="width: 10%"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{LOOP}
|
|
<tr>
|
|
<td>{price_id}</td>
|
|
<td>{amount}</td>
|
|
<td>{lookup_key}</td>
|
|
<td><a href="{ROOT_URL}admin/members/orphans/adopt/{price_id}" class="btn btn-sm btn-success"><i class="fa fa-fw fa-download"></i></a></td>
|
|
<td><a href="{ROOT_URL}admin/members/orphans/abandon/{price_id}" class="btn btn-sm btn-danger"><i class="fa fa-fw fa-trash"></i></a></td>
|
|
</tr>
|
|
{/LOOP}
|
|
{ALT}
|
|
<tr>
|
|
<td class="text-center" colspan="5">
|
|
No results to show.
|
|
</td>
|
|
</tr>
|
|
{/ALT}
|
|
</tbody>
|
|
</table>
|
|
</div> |