Merge pull request #2688 from TopoX84/patch-4

Update status.tpl
This commit is contained in:
Sebastian Grewe 2018-03-05 15:21:03 +01:00 committed by GitHub
commit daf709147d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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