* Using lower time range for shares: 120 seconds * Updated worker class with new time range for active workers * Added statistics, active users call with 120 seconds time range * Updated admin panel dashboard template Fixes #1352 once merged.
92 lines
3.1 KiB
Smarty
92 lines
3.1 KiB
Smarty
{nocache}
|
|
<article class="module width_quarter">
|
|
<header><h3>MPOS Version Information</h3></header>
|
|
<table width="25%" class="tablesorter" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th>Component</th>
|
|
<th align="center">Current</th>
|
|
<th align="center">Installed</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><strong>MPOS</strong></td>
|
|
<td align="center"><font color="green">{$VERSION['CURRENT']['CORE']}</font></td>
|
|
<td align="center">
|
|
<font color="{if $VERSION['INSTALLED']['CORE'] == $VERSION['CURRENT']['CORE']}green{else}red{/if}">{$VERSION['INSTALLED']['CORE']}</font>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Config</strong></td>
|
|
<td align="center"><font color="green">{$VERSION['CURRENT']['CONFIG']}</font></td>
|
|
<td align="center">
|
|
<font color="{if $VERSION['INSTALLED']['CONFIG'] == $VERSION['CURRENT']['CONFIG']}green{else}red{/if}">{$VERSION['INSTALLED']['CONFIG']}</font>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Database</strong></td>
|
|
<td align="center"><font color="green">{$VERSION['CURRENT']['DB']}</font></td>
|
|
<td align="center">
|
|
<font color="{if $VERSION['INSTALLED']['DB'] == $VERSION['CURRENT']['DB']}green{else}red{/if}">{$VERSION['INSTALLED']['DB']}</font>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</article>
|
|
|
|
<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>
|
|
|
|
<article class="module width_quarter">
|
|
<header><h3>MPOS Status</h3></header>
|
|
<table class="tablesorter" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2" align="center">Cronjobs</th>
|
|
<th align="center">Wallet</th>
|
|
</tr>
|
|
<tr>
|
|
<th align="center"><strong>Errors</strong></th>
|
|
<th align="center"><strong>Disabled</strong></th>
|
|
<th align="center"><strong>Errors</strong></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<a href="{$smarty.server.PHP_SELF}?page=admin&action=monitoring">{if $CRON_ERROR == 0}None - OK{else}{$CRON_ERROR}{/if}</a>
|
|
</td>
|
|
<td align="center">
|
|
<a href="{$smarty.server.PHP_SELF}?page=admin&action=monitoring">{if $CRON_DISABLED == 0}None - OK{else}{$CRON_DISABLED}{/if}</a>
|
|
</td>
|
|
<td align="center">
|
|
<a href="{$smarty.server.PHP_SELF}?page=admin&action=wallet">{$WALLET_ERROR|default:"None - OK"}</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</article>
|
|
{/nocache}
|