[UPDATE] Remove dashboard round stats color as requested

This commit is contained in:
nrpatten 2014-03-10 19:47:26 -07:00
parent c7df914225
commit ac8223c882

View File

@ -28,23 +28,23 @@
<thead>
<tr>
<th><h4><i class="fa fa-cloud fa-fw"></i> Round Shares</h4></th>
<th class="sharesvalid"><h4><i class="fa fa-thumbs-up fa-hw"></i> Valid</h4></th>
<th class="shareswarning"><h4><i class="fa fa-thumbs-down fa-hw"></i> Invalid</h4></th>
<th class="sharesefficiency"><h4><i class="fa fa-dot-circle-o fa-hw"></i> Efficiency</h4></th>
<th><h4><i class="fa fa-thumbs-up fa-hw"></i> Valid</h4></th>
<th><h4><i class="fa fa-thumbs-down fa-hw"></i> Invalid</h4></th>
<th><h4><i class="fa fa-dot-circle-o fa-hw"></i> Efficiency</h4></th>
</tr>
<tr>
<th><h4><i class="fa fa-user fa-fw"></i> My Shares</h4></td>
<th class="sharesvalid"><h4 id="b-yvalid">{$GLOBAL.userdata.shares.valid|number_format}</h4></th>
<th class="shareswarning"><h4 id="b-yivalid">{$GLOBAL.userdata.shares.invalid|number_format}</h4></th>
<th class="sharesefficiency">
<th><h4 id="b-yvalid">{$GLOBAL.userdata.shares.valid|number_format}</h4></th>
<th><h4 id="b-yivalid">{$GLOBAL.userdata.shares.invalid|number_format}</h4></th>
<th>
<h4 id="b-yefficiency">{if $GLOBAL.userdata.shares.valid > 0}{(100 - ($GLOBAL.userdata.shares.invalid / ($GLOBAL.userdata.shares.valid + $GLOBAL.userdata.shares.invalid) * 100))|number_format:"2"}%{else}0.00%{/if}</h4>
</th>
</tr>
<tr>
<th><h4><i class="fa fa-users fa-fw"></i> Pool Shares</h4></th>
<th class="sharesvalid"><h4 id="b-pvalid">{$GLOBAL.roundshares.valid|number_format}</h4></th>
<th class="shareswarning"><h4 id="b-pivalid">{$GLOBAL.roundshares.invalid|number_format}</h4></th>
<th class="sharesefficiency">
<th><h4 id="b-pvalid">{$GLOBAL.roundshares.valid|number_format}</h4></th>
<th><h4 id="b-pivalid">{$GLOBAL.roundshares.invalid|number_format}</h4></th>
<th>
<h4 id="b-pefficiency">{if $GLOBAL.roundshares.valid > 0}{(100 - ($GLOBAL.roundshares.invalid / ($GLOBAL.roundshares.valid + $GLOBAL.roundshares.invalid) * 100))|number_format:"2"}%{else}0.00%{/if}<h4>
</th>
</tr>