php-mpos/public/templates/mobile/account/workers/default.tpl
2013-08-14 11:47:46 +02:00

18 lines
676 B
Smarty

<table>
<tbody>
<tr>
<th align="left">Worker Name</th>
<th align="center">Active</th>
<th align="right">Khash/s</th>
</tr>
{section worker $WORKERS}
{assign var="username" value="."|escape|explode:$WORKERS[worker].username:2}
<tr>
<td align="left"{if $WORKERS[worker].active} style="color: orange"{/if}>{$username.0|escape}.{$username.1|escape}</td>
<td align="center"><img src="{$PATH}/images/{if $WORKERS[worker].hashrate > 0}success{else}error{/if}.gif" /></td>
<td align="right">{$WORKERS[worker].hashrate|number_format}</td>
</tr>
{/section}
</tbody>
</table>