[UPDATE] Adding Reg Date to Userinfo in Admin Panel
This commit is contained in:
parent
47f6048378
commit
7ffa620975
@ -57,6 +57,7 @@ if (isset($_REQUEST['filter'])) {
|
||||
foreach ($aUsers as $iKey => $aUser) {
|
||||
$aBalance = $transaction->getBalance($aUser['id']);
|
||||
$aUser['balance'] = $aBalance['confirmed'];
|
||||
$aUser['signup_timestamp'] = $user->getSignupTime($aUser['id']);
|
||||
$aUser['hashrate'] = $statistics->getUserHashrate($aUser['username'], $aUser['id']);
|
||||
|
||||
if ($config['payout_system'] == 'pps') {
|
||||
|
||||
@ -95,6 +95,7 @@
|
||||
<th align="right" colspan="2">Est. 24 Hours </th>
|
||||
{/if}
|
||||
<th align="right">Balance </th>
|
||||
<th align="right">Reg. Date </th>
|
||||
<th align="right">Last Login </th>
|
||||
<th align="center">Admin</th>
|
||||
<th align="center">Locked</th>
|
||||
@ -117,6 +118,7 @@
|
||||
<td align="right" colspan="2">{$USERS[user].estimates.hours24|number_format:"8"}</td>
|
||||
{/if}
|
||||
<td align="right">{$USERS[user].balance|number_format:"8"}</td>
|
||||
<td align="right">{$USERS[user].signup_timestamp|date_format:"%d/%m %H:%M:%S"}</td>
|
||||
<td align="right">{$USERS[user].last_login|date_format:"%d/%m %H:%M:%S"}</td>
|
||||
<td align="center">
|
||||
<input type="hidden" name="admin[{$USERS[user].id}]" value="0"/>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user