add fullname to log extend

This commit is contained in:
iBNu Maksum
2025-03-13 15:59:55 +07:00
parent 17de653752
commit 803d04a91d
4 changed files with 54 additions and 7 deletions

View File

@ -4,7 +4,20 @@
<table class="table table-condensed">
<thead>
<tr>
<th>{Lang::T('Username')}</th>
<th>
<select style="border: 0px; width: 100%; background-color: #f9f9f9;"
onchange="changeExpiredDefault(this)">
<option value="username" {if $cookie['expdef'] == 'username'}selected{/if}>
{Lang::T('Username')}
</option>
<option value="fullname" {if $cookie['expdef'] == 'fullname'}selected{/if}>
{Lang::T('Full Name')}</option>
<option value="phone" {if $cookie['expdef'] == 'phone'}selected{/if}>{Lang::T('Phone')}
</option>
<option value="email" {if $cookie['expdef'] == 'email'}selected{/if}>{Lang::T('Email')}
</option>
</select>
</th>
<th>{Lang::T('Created / Expired')}</th>
<th>{Lang::T('Internet Package')}</th>
<th>{Lang::T('Location')}</th>
@ -15,7 +28,17 @@
{assign var="rem_exp" value="{$expired['expiration']} {$expired['time']}"}
{assign var="rem_started" value="{$expired['recharged_on']} {$expired['recharged_time']}"}
<tr>
<td><a href="{Text::url('customers/viewu/',$expired['username'])}">{$expired['username']}</a></td>
<td><a href="{Text::url('customers/view/',$expired['id'])}">
{if $cookie['expdef'] == 'fullname'}
{$expired['fullname']}
{elseif $cookie['expdef'] == 'phone'}
{$expired['phonenumber']}
{elseif $cookie['expdef'] == 'email'}
{$expired['email']}
{else}
{$expired['username']}
{/if}
</a></td>
<td><small data-toggle="tooltip" data-placement="top"
title="{Lang::dateAndTimeFormat($expired['recharged_on'],$expired['recharged_time'])}">{Lang::timeElapsed($rem_started)}</small>
/
@ -30,4 +53,12 @@
</table>
</div>
&nbsp; {include file="pagination.tpl"}
</div>
</div>
<script>
function changeExpiredDefault(fl) {
setCookie('expdef', fl.value, 365);
setTimeout(() => {
location.reload();
}, 1000);
}
</script>