* Split up dashboard default template into subfiles * Added new invitation overview * Updated page file Fixes #1357 once merged.
26 lines
712 B
Smarty
26 lines
712 B
Smarty
{nocache}
|
|
<article class="module width_quarter">
|
|
<header><h3>Users</h3></header>
|
|
<table class="tablesorter" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th align="center">Total</th>
|
|
<th align="center">Active</th>
|
|
<th align="center">Locked</th>
|
|
<th align="center">Admins</th>
|
|
<th align="center">No Fees</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">{$USER_INFO.total}</td>
|
|
<td align="center">{$USER_INFO.active}</td>
|
|
<td align="center">{$USER_INFO.locked}</td>
|
|
<td align="center">{$USER_INFO.admins}</td>
|
|
<td align="center">{$USER_INFO.nofees}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</article>
|
|
{/nocache}
|