[ADDED] Worker Information Box to dashboard
This commit is contained in:
parent
e86f6703e3
commit
c3d69fe1ce
@ -41,8 +41,6 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{* Load our worker information template for live-updates on worker status *}
|
||||
{include file="dashboard/account_data/_workers.tpl"}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -5,6 +5,7 @@
|
||||
{include file="dashboard/overview/default.tpl"}
|
||||
{include file="dashboard/round_statistics/$PAYOUT_SYSTEM/default.tpl"}
|
||||
{include file="dashboard/account_data/default.tpl"}
|
||||
{include file="dashboard/worker_information/default.tpl"}
|
||||
</div>
|
||||
{* Include our JS libraries, we allow a live updating JS and a static one *}
|
||||
{if !$DISABLED_DASHBOARD and !$DISABLED_DASHBOARD_API}
|
||||
|
||||
@ -0,0 +1,24 @@
|
||||
<div class="col-lg-4">
|
||||
<div class="panel panel-info">
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title"><i class="fa fa-desktop fa-fw"></i> Worker Information</h4>
|
||||
</div>
|
||||
<div class="panel-body no-padding">
|
||||
{if !$DISABLED_DASHBOARD and !$DISABLED_DASHBOARD_API}
|
||||
<table class="table table-bordered table-hover table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Worker</th>
|
||||
<th>Hashrate</th>
|
||||
<th>Difficulty</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="b-workers">
|
||||
<td colspan="3" class="text-center">No worker information available</td>
|
||||
</tbody>
|
||||
</tr>
|
||||
</table>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Reference in New Issue
Block a user