-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2688 from TopoX84/patch-4
Update status.tpl
- Loading branch information
Showing
1 changed file
with
35 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
<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"> | ||
<table class="table table-striped table-bordered table-hover"> | ||
<thead> | ||
<th>Version</th> | ||
<th>Protocol Version</th> | ||
<th>Wallet Version</th> | ||
<th>Peers</th> | ||
<th>Status</th> | ||
<th>Blocks</th> | ||
<th>Accounts</th> | ||
</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> | ||
<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> | ||
<th>Accounts</th> | ||
</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> |