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">
|
|
|
|
<div class="panel mb20 panel-hovered panel-default">
|
|
|
|
<div class="panel-heading">{$_L['List_Activated_Voucher']}</div>
|
|
|
|
<div class="panel-body">
|
2022-10-16 14:48:21 +07:00
|
|
|
<div class="table-responsive">
|
2022-10-15 23:18:24 +07:00
|
|
|
<table id="datatable" class="table table-bordered table-bordered table-striped">
|
2022-10-13 15:19:51 +07:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{$_L['Username']}</th>
|
|
|
|
<th>{$_L['Plan_Name']}</th>
|
|
|
|
<th>{$_L['Plan_Price']}</th>
|
|
|
|
<th>{$_L['Type']}</th>
|
|
|
|
<th>{$_L['Created_On']}</th>
|
|
|
|
<th>{$_L['Expires_On']}</th>
|
|
|
|
<th>{$_L['Method']}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{foreach $d as $ds}
|
|
|
|
<tr>
|
|
|
|
<td>{$ds['username']}</td>
|
|
|
|
<td>{$ds['plan_name']}</td>
|
|
|
|
<td>{number_format($ds['price'],2,$_c['dec_point'],$_c['thousands_sep'])}</td>
|
|
|
|
<td>{$ds['type']}</td>
|
|
|
|
<td class="text-success">{date($_c['date_format'], strtotime($ds['recharged_on']))}
|
|
|
|
{$ds['time']}</td>
|
|
|
|
<td class="text-danger">{date($_c['date_format'], strtotime($ds['expiration']))}
|
|
|
|
{$ds['time']}</td>
|
|
|
|
<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"}
|