You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
5.1 KiB
99 lines
5.1 KiB
{{outlet 'error' }} |
|
<div class="jumbotron-brand"> |
|
<div class="container"> |
|
<div class="row"> |
|
<div class="col-md-4 stats"> |
|
<div style="display: block;"> |
|
<i class="fa fa-cloud"></i> {{t "account.immature.balance"}}: <span>{{format-balance model.stats.immature}} |
|
{{config.Unit}}</span><br> |
|
<small>{{t "account.immature.description"}}</small> |
|
</div> |
|
<div style="display: block;"> |
|
<i class="fa fa-bank"></i> {{t "account.pending.balance"}}: <span>{{format-balance model.stats.balance}} |
|
{{config.Unit}}</span><br> |
|
<i class="fa fa-bank"></i> {{t "account.threshold"}}: <span>{{format-threshold model.threshold}}</span><br> |
|
<small>{{t "account.pending.description"}}</small> |
|
</div> |
|
{{#if model.stats.payouttreshold}} |
|
<div style="display: block;"> |
|
<i class="fa fa-bank"></i> {{t "account.payoutThreshold"}}: <span>{{format-balance |
|
model.stats.payouttreshold}}</span><br> |
|
</div> |
|
{{/if}} |
|
{{#if model.stats.pending}} |
|
<div style="display: block;"> |
|
<i class="fa fa-clock-o"></i> {{t "account.current"}}: <span>{{format-balance model.stats.pending}} |
|
{{config.Unit}}</span><br> |
|
</div> |
|
{{/if}} |
|
<div style="display: block;"><i class="fa fa-btc"></i> {{t "account.total.paid"}}: <span>{{format-balance |
|
model.stats.paid}} {{config.Unit}}</span></div> |
|
<div style="display: block;"><i class="fa fa-money"></i> {{t "account.last24hReward"}}: <span>{{format-balance |
|
model.24hreward}}</span></div> |
|
<div style="display: block;"><i class="fa fa-calculator"></i>{{t |
|
"account.earningsperday24havg"}}:<span>{{format-number |
|
earnPerDay}}</span></div> |
|
</div> |
|
<div class="col-md-4 stats"> |
|
{{#if model.stats.lastShare}} |
|
<div style="display: block;"><i class="fa fa-hourglass-half"></i> |
|
{{t "account.last_share_submitted"}}: <span>{{format-relative (seconds-to-ms (string-to-int |
|
model.stats.lastShare))}}</span> |
|
</div> |
|
{{/if}} |
|
<div style="display: block;"><i class="fa fa-cogs"></i> {{t "account.online"}}: <span>{{format-number |
|
model.workersOnline}}</span></div> |
|
<div style="display: block;"><i class="fa fa-tachometer"></i> {{t "account.hashrate"}} ({{t |
|
"account.short_average_abbrv"}}): <span>{{format-hashrate model.currentHashrate}}</span></div> |
|
<div style="display: block;"><i class="fa fa-tachometer"></i> {{t "account.hashrate"}} ({{t |
|
"account.long_average_abbrv"}}): <span>{{format-hashrate model.hashrate}}</span></div> |
|
<div style="display: block;"><i class="fa fa-gears"></i> {{t "account.sharesfound"}}: <span>{{format-hashrate |
|
model.stats.lastShareDiff}}</span></div> |
|
<div style="display: block;"><i class="fa fa-gears"></i> {{t "account.payoutScheme"}}:<span>{{#if |
|
model.miningTypeSolo}}<span>SOLO</span>{{else}}<span> PPLNS</span>{{/if}}</span></div> |
|
</div> |
|
<div class="col-md-4 stats"> |
|
<div style="display: block;"><i class="fa fa-tachometer"></i> {{t "account.blocks.found"}}: |
|
<span>{{format-number model.stats.blocksFound fallback='0'}}</span> |
|
</div> |
|
<div style="display: block;"> |
|
<i class="fa fa-hourglass"></i> |
|
{{t "account.epoch_switch"}}: <span>{{format-relative applicationController.nextEpoch units="hour"}}</span> |
|
</div> |
|
<!--<div style="display: block;"><i class="fa fa-thermometer fa-fw"></i> My Shares in the last 'N' <span>{{roundSharesN}}</span></div>--> |
|
<div style="display: block;"><i class="fa fa-gears"></i> {{t "account.personalLuck"}}: <span>{{format-number |
|
PersonalLuck |
|
style='percent'}}</span></div> |
|
<div style="display: block;"> |
|
<i class="fa fa-gears"></i>{{t "account.pPLNSYourRoundShare"}}: <span>{{format-number roundPercent |
|
style='percent' |
|
maximumFractionDigits='0'}}</span><br /> |
|
<small>{{t "account.round_share_description"}}</small> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="container"> |
|
<ul class="nav nav-tabs"> |
|
{{#active-li currentWhen='account.index' role='presentation'}} |
|
{{#link-to 'account.index'}}{{t "account.workers"}} <span class="label label-success">{{model.workersOnline}}</span> |
|
/ <span class="label label-danger">{{model.workersOffline}}</span>{{/link-to}} |
|
{{/active-li}} |
|
{{#active-li currentWhen='account.rewards' role='presentation'}} |
|
{{#link-to 'account.rewards'}}{{t "account.rewards"}}{{/link-to}} |
|
{{/active-li}} |
|
{{#active-li currentWhen='account.payouts' role='presentation'}} |
|
{{#link-to 'account.payouts'}}{{t "account.payouts"}}{{/link-to}} |
|
{{/active-li}} |
|
{{#active-li currentWhen='account.settings' role='presentation'}} |
|
{{#link-to 'account.settings'}}{{t "account.settings"}}{{/link-to}} |
|
{{/active-li}} |
|
{{#active-li currentWhen='account.mining' role='presentation'}} |
|
{{#link-to 'account.mining'}}{{t "account.pPLNSSOLO"}}{{/link-to}} |
|
{{/active-li}} |
|
</ul> |
|
</div> |
|
|
|
{{outlet}} |