2022-09-06 10:31:33 +07:00
|
|
|
{include file="sections/user-header.tpl"}
|
2022-10-15 23:18:24 +07:00
|
|
|
<!-- user-activation-list -->
|
2022-09-06 10:31:33 +07:00
|
|
|
|
2022-10-13 15:19:51 +07:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
2022-10-17 11:57:39 +07:00
|
|
|
<div class="panel mb20 panel-hovered panel-primary">
|
2024-02-13 13:54:01 +07:00
|
|
|
<div class="panel-heading">{Lang::T('List Activated Voucher')}</div>
|
2022-10-13 15:19:51 +07:00
|
|
|
<div class="panel-body">
|
2022-10-16 14:48:21 +07:00
|
|
|
<div class="table-responsive">
|
2024-02-21 14:37:44 +07:00
|
|
|
<table id="datatable" class="table table-bordered table-striped table-condensed">
|
2022-10-13 15:19:51 +07:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2024-02-13 13:54:01 +07:00
|
|
|
<th>{Lang::T('Username')}</th>
|
|
|
|
<th>{Lang::T('Plan Name')}</th>
|
|
|
|
<th>{Lang::T('Plan Price')}</th>
|
|
|
|
<th>{Lang::T('Type')}</th>
|
|
|
|
<th>{Lang::T('Created On')}</th>
|
|
|
|
<th>{Lang::T('Expires On')}</th>
|
|
|
|
<th>{Lang::T('Method')}</th>
|
2022-10-13 15:19:51 +07:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{foreach $d as $ds}
|
|
|
|
<tr>
|
|
|
|
<td>{$ds['username']}</td>
|
|
|
|
<td>{$ds['plan_name']}</td>
|
2023-08-15 16:21:35 +07:00
|
|
|
<td>{Lang::moneyFormat($ds['price'])}</td>
|
2022-10-13 15:19:51 +07:00
|
|
|
<td>{$ds['type']}</td>
|
2023-08-28 09:44:57 +07:00
|
|
|
<td>{Lang::dateAndTimeFormat($ds['recharged_on'],$ds['recharged_time'])}</td>
|
|
|
|
<td>{Lang::dateAndTimeFormat($ds['expiration'],$ds['time'])}</td>
|
2022-10-13 15:19:51 +07:00
|
|
|
<td>{$ds['method']}</td>
|
|
|
|
</tr>
|
|
|
|
{/foreach}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{$paginator['contents']}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-06 10:31:33 +07:00
|
|
|
|
|
|
|
|
2022-10-13 15:19:51 +07:00
|
|
|
{include file="sections/user-footer.tpl"}
|