php-mpos/templates/bootstrap/admin/wallet/status.tpl
lubuzzo fd0f0fd656 Adding support for the latest Bitcoin's changes
- Accounts was removed, instead, now, we have labels
2019-03-06 15:04:51 -03:00

40 lines
1.1 KiB
Smarty

<div class="col-lg-8">
<div class="panel panel-info">
<div class="panel-heading">
<i class="fa fa-info fa-fw"></i> Wallet Status
</div>
<div class="panel-body no-padding">
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>Version</th>
<th>Protocol Version</th>
<th>Wallet Version</th>
<th>Peers</th>
<th>Status</th>
<th>Blocks</th>
{if $LABELSCOMMAND}
<th>Labels</th>
{else}
<th>Accounts</th>
{/if}
</tr>
</thead>
<tbody>
<tr>
<td>{$COININFO.version|default:""}</td>
<td>{$COININFO.protocolversion|default:""}</td>
<td>{$COININFO.walletversion|default:""}</td>
<td>{$COININFO.connections|default:""}</td>
<td><font color="{if $COININFO.errors}red{else}green{/if}">{$COININFO.errors|default:"OK"}</font></td>
<td>{$COININFO.blocks|default:"0"}</td>
<td>{$ADDRESSCOUNT}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>