Merge branch 'bootstrap' of github.com:MPOS/php-mpos into bootstrap

This commit is contained in:
nrpatten 2014-03-11 06:38:29 -07:00
commit d1442fea7f
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<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> Account Information</h4>
<h4 class="panel-title"><i class="fa fa-user-md fa-fw"></i> Account Information</h4>
</div>
<div class="panel-body no-padding">
<table class="table table-bordered table-hover table-striped">

View File

@ -11,8 +11,8 @@
<th>Donor</th>
<th>User Name</th>
<th class="text-right">KH/s</th>
{if $GLOBAL.config.price.enabled}
<th class="text-right">{$GLOBAL.config.currency}/Day</th>
{if $GLOBAL.config.price.enabled}
{if $GLOBAL.config.price.currency}<th class="text-right">{$GLOBAL.config.price.currency}/Day</th>{/if}
{/if}
</tr>
@ -27,8 +27,8 @@
<td>{if $CONTRIBHASHES[contrib].donate_percent|default:"0" >= 2}<i class="fa fa-trophy fa-fw">{elseif $CONTRIBHASHES[contrib].donate_percent|default:"0" < 2 AND $CONTRIBHASHES[contrib].donate_percent|default:"0" > 0}<i class="fa fa-star-o fa-fw">{else}<i class="fa fa-ban fa-fw"></i>{/if}</td>
<td>{if $CONTRIBHASHES[contrib].is_anonymous|default:"0" == 1 && $GLOBAL.userdata.is_admin|default:"0" == 0}anonymous{else}{$CONTRIBHASHES[contrib].account|escape}{/if}</td>
<td class="text-right">{$CONTRIBHASHES[contrib].hashrate|number_format}</td>
{if $GLOBAL.config.price.enabled}
<td class="text-right">{$estday|number_format:"3"}</td>
{if $GLOBAL.config.price.enabled}
{if $GLOBAL.config.price.currency}<td class="text-right">{($estday * $GLOBAL.price)|default:"n/a"|number_format:"4"}</td>{/if}
{/if}
</tr>
@ -40,8 +40,8 @@
<td>{if $GLOBAL.userdata.donate_percent|default:"0" >= 2}<i class="fa fa-trophy fa-fw"></i>{elseif $GLOBAL.userdata.donate_percent|default:"0" < 2 AND $GLOBAL.userdata.donate_percent|default:"0" > 0}<i class="fa fa-star-o fa-fw"></i>{else}<i class="fa fa-ban fa-fw"></i>{/if}</td>
<td>{$GLOBAL.userdata.username|escape}</td>
<td class="text-right">{$GLOBAL.userdata.rawhashrate|number_format}</td>
{if $GLOBAL.config.price.enabled}
<td class="text-right">{$myestday|number_format:"3"|default:"n/a"}</td>
{if $GLOBAL.config.price.enabled}
{if $GLOBAL.config.price.currency}<td class="text-right">{($myestday * $GLOBAL.price)|default:"n/a"|number_format:"4"}</td>{/if}
{/if}
</tr>