69 lines
2.5 KiB
Smarty
69 lines
2.5 KiB
Smarty
{nocache}
|
|
<article class="module width_full">
|
|
<header><h3>Invitations</h3></header>
|
|
|
|
<article class="module width_quarter">
|
|
<header><h3>Overview</h3></header>
|
|
<table class="tablesorter" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th align="center">Total</th>
|
|
<th align="center">Activated</th>
|
|
<th align="center">Outstanding</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">{$INVITATION_INFO.total}</td>
|
|
<td align="center">{$INVITATION_INFO.activated}</td>
|
|
<td align="center">{$INVITATION_INFO.outstanding}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</article>
|
|
|
|
<article class="module width_3_quarter" style="min-height: 150px">
|
|
<header><h3>Top Inviters</h3></header>
|
|
<div>
|
|
<table cellspacing="0" class="tablesorter">
|
|
<tbody>
|
|
<tr>
|
|
<td align="left">
|
|
{if $smarty.request.invitersstart|default:"0" > 0}
|
|
<a href="{$smarty.server.SCRIPT_NAME}?page={$smarty.request.page|escape}&action={$smarty.request.action|escape}&invitersstart={$smarty.request.invitersstart|escape|default:"0" - $LIMIT}{if $FILTERS|default:""}{$FILTERS}{/if}"><i class="icon-left-open"></i> Previous 10</a>
|
|
{else}
|
|
<i class="icon-left-open"></i>
|
|
{/if}
|
|
</td>
|
|
<td align="right">
|
|
<a href="{$smarty.server.SCRIPT_NAME}?page={$smarty.request.page|escape}&action={$smarty.request.action|escape}&invitersstart={$smarty.request.invitersstart|escape|default:"0" + $LIMIT}{if $FILTERS|default:""}{$FILTERS}{/if}">Next 10 <i class="icon-right-open"></i></a>
|
|
</td>
|
|
</tbody>
|
|
</table>
|
|
|
|
<table class="tablesorter" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th>Username</th>
|
|
<th align="left">eMail</th>
|
|
<th align="center">Amount</th>
|
|
<th align="center">Outstanding</th>
|
|
<th align="center">Activated</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{section inviter $TOPINVITERS}
|
|
<tr class="{cycle values="odd,even"}">
|
|
<td align="left">{$TOPINVITERS[inviter].username|escape}</td>
|
|
<td align="left">{$TOPINVITERS[inviter].email}</td>
|
|
<td align="center">{$TOPINVITERS[inviter].invitationcount}</td>
|
|
<td align="center">{($TOPINVITERS[inviter].invitationcount - $TOPINVITERS[inviter].activated)|number_format:"0"}</td>
|
|
<td align="center">{$TOPINVITERS[inviter].activated}</td>
|
|
</tr>
|
|
{/section}
|
|
</tbody>
|
|
</table>
|
|
</article>
|
|
|
|
</article>
|
|
{/nocache} |