53 lines
1.6 KiB
Smarty
53 lines
1.6 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 10 Inviters</h3></header>
|
|
<div>
|
|
<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} |