[FIX] dashboard headers and workers

This commit is contained in:
iAmShorty 2014-03-02 18:03:36 +01:00
parent 66473d1464
commit 6733c49bbd
5 changed files with 27 additions and 20 deletions

View File

@ -1,5 +1,5 @@
<div class="col-lg-6"> <div class="col-lg-6">
<div class="panel panel-default"> <div class="panel panel-info">
<div class="panel-heading"> <div class="panel-heading">
<h4 class="panel-title">Account Information</h4> <h4 class="panel-title">Account Information</h4>
</div> </div>

View File

@ -1,5 +1,5 @@
<div class="col-lg-8"> <div class="col-lg-8">
<div class="panel panel-default"> <div class="panel panel-info">
<div class="panel-heading"> <div class="panel-heading">
<h4 class="panel-title">Overview {if $GLOBAL.config.price.currency}{$GLOBAL.config.currency}/{$GLOBAL.config.price.currency}: <span id="b-price">{$GLOBAL.price|number_format:"8"|default:"0"}</span>{/if} / Pool Workers: <span id="b-dworkers">{$GLOBAL.workers}</span></h4> <h4 class="panel-title">Overview {if $GLOBAL.config.price.currency}{$GLOBAL.config.currency}/{$GLOBAL.config.price.currency}: <span id="b-price">{$GLOBAL.price|number_format:"8"|default:"0"}</span>{/if} / Pool Workers: <span id="b-dworkers">{$GLOBAL.workers}</span></h4>
</div> </div>

View File

@ -1,5 +1,5 @@
<div class="col-lg-6"> <div class="col-lg-6">
<div class="panel panel-default"> <div class="panel panel-info">
<div class="panel-heading"> <div class="panel-heading">
<h4 class="panel-title">Round Information</h4> <h4 class="panel-title">Round Information</h4>
</div> </div>

View File

@ -1,5 +1,5 @@
<div class="col-lg-4"> <div class="col-lg-4">
<div class="panel panel-default"> <div class="panel panel-info">
<div class="panel-heading"> <div class="panel-heading">
<h4 class="panel-title">{$GLOBAL.config.payout_system|capitalize} Stats</h4> <h4 class="panel-title">{$GLOBAL.config.payout_system|capitalize} Stats</h4>
</div> </div>

View File

@ -1,16 +1,23 @@
<article class="module width_quarter"> <div class="col-lg-4">
<header><h3>Active Worker Information</h3></header> <div class="panel panel-info">
<table class="tablesorter" cellspacing="0"> <div class="panel-heading">
<thead> <h3>Active Worker Information</h3>
<tr> </div>
<th>Worker</th> <div class="panel-body no-padding">
<th>Hashrate</th> <table class="tablesorter" cellspacing="0">
<th>Difficulty</th> <thead>
</tr> <tr>
</thead> <th>Worker</th>
<tbody id="b-workers"> <th>Hashrate</th>
<td colspan="3">Loading worker information</td> <th>Difficulty</th>
</tbody> </tr>
</tr> </thead>
</table> <tbody id="b-workers">
</article> <tr>
<td colspan="3">Loading worker information</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>