50 lines
2.3 KiB
Smarty
50 lines
2.3 KiB
Smarty
{nocache}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="panel panel-info">
|
|
<div class="panel-heading">
|
|
<i class="fa fa-user fa-fw"></i> Last Registered Users
|
|
</div>
|
|
<div class="panel-body no-padding">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-bordered table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Username</th>
|
|
<th>eMail</th>
|
|
<th>Reg. Date</th>
|
|
<th>Invite</th>
|
|
<th>Invited From</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{section user $LASTREGISTEREDUSERS}
|
|
<tr>
|
|
<td>{$LASTREGISTEREDUSERS[user].id|escape}</td>
|
|
<td>{$LASTREGISTEREDUSERS[user].mposuser}</td>
|
|
<td>{$LASTREGISTEREDUSERS[user].email}</td>
|
|
<td>{$LASTREGISTEREDUSERS[user].signup_timestamp|date_format:$GLOBAL.config.date}</td>
|
|
<td class="text-center">{if !$LASTREGISTEREDUSERS[user].inviter}<i class="fa fa-times fa-fw">{else}<i class="fa fa-check fa-fw">{/if}</td>
|
|
<td><a href="{$smarty.server.SCRIPT_NAME}?page=admin&action=user&do=query&filter[account]={$LASTREGISTEREDUSERS[user].inviter}">{$LASTREGISTEREDUSERS[user].inviter}</a></td>
|
|
</tr>
|
|
{/section}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="panel-footer">
|
|
<ul class="pager">
|
|
<li class="previous {if $smarty.get.registeredstart|default:"0" <= 0}disabled{/if}">
|
|
<a href="{if $smarty.get.registeredstart|default:"0" <= 0}#{else}{$smarty.server.SCRIPT_NAME}?page={$smarty.request.page|escape}&action={$smarty.request.action|escape}®isteredstart={$smarty.request.registeredstart|escape|default:"0" - $LIMIT}{if $FILTERS|default:""}{$FILTERS}{/if}{/if}">← Prev</a>
|
|
</li>
|
|
<li class="next">
|
|
<a href="{$smarty.server.SCRIPT_NAME}?page={$smarty.request.page|escape}&action={$smarty.request.action|escape}®isteredstart={$smarty.request.registeredstart|escape|default:"0" + $LIMIT}{if $FILTERS|default:""}{$FILTERS}{/if}#registrations">Next →</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/nocache}
|