Files
thetempusproject/app/plugins/members/views/manage.html
Joey Kimsey a1c849a626 wip
2024-12-11 07:49:48 -05:00

52 lines
2.0 KiB
HTML

<div class="container py-4">
<div class="row justify-content-center">
<div class="col-md-8">
<legend>Memberships</legend>
<table class="table text-center context-main">
<thead>
<tr>
<th style="width: 25%">Name</th>
<th style="width: 20%">Status</th>
<th style="width: 20%">Price</th>
<th style="width: 10%">Start</th>
<th style="width: 10%">End</th>
<th style="width: 5%"></th>
<th style="width: 5%"></th>
</tr>
</thead>
<tbody>
{LOOP}
<tr>
<td>{productName}</td>
<td>{status}</td>
<td>{prettyPrice}</td>
<td>{DTC=date}{current_period_start}{/DTC}</td>
<td>{DTC=date}{current_period_end}{/DTC}</td>
<td>
<a href="{ROOT_URL}member/pause/{ID}" class="btn btn-sm btn-primary">
<i class="fa fa-fw fa-pause"></i>
</a>
</td>
<td>
<a href="{ROOT_URL}member/cancel/{ID}" class="btn btn-sm btn-danger">
<i class="fa fa-fw fa-times"></i>
</a>
</td>
</tr>
{/LOOP}
{ALT}
<tr>
<td colspan="7" class="text-center">
No results to show.
</td>
</tr>
{/ALT}
</tbody>
</table>
<a href="{ROOT_URL}member/managepayment" class="btn btn-sm btn-primary">
Manage Payment Method
</a>
</div>
</div>
</div>