|
1 | | - <div class="col-lg-8"> |
2 | | - <div class="panel panel-info"> |
3 | | - <div class="panel-heading"> |
4 | | - <i class="fa fa-info fa-fw"></i> Wallet Status |
5 | | - </div> |
6 | | - <div class="panel-body no-padding"> |
7 | | - <table class="table table-striped table-bordered table-hover"> |
8 | | - <thead> |
9 | | - <th>Version</th> |
10 | | - <th>Protocol Version</th> |
11 | | - <th>Wallet Version</th> |
12 | | - <th>Peers</th> |
13 | | - <th>Status</th> |
14 | | - <th>Blocks</th> |
15 | | - <th>Accounts</th> |
16 | | - </thead> |
17 | | - <tbody> |
18 | | - <tr> |
19 | | - <td>{$COININFO.version|default:""}</td> |
20 | | - <td>{$COININFO.protocolversion|default:""}</td> |
21 | | - <td>{$COININFO.walletversion|default:""}</td> |
22 | | - <td>{$COININFO.connections|default:""}</td> |
23 | | - <td><font color="{if $COININFO.errors}red{else}green{/if}">{$COININFO.errors|default:"OK"}</font></td> |
24 | | - <td>{$COININFO.blocks|default:"0"}</td> |
25 | | - <td>{$ADDRESSCOUNT}</td> |
26 | | - </tr> |
27 | | - </tbody> |
28 | | - </table> |
29 | | - </div> |
30 | | - </div> |
31 | | - </div> |
32 | | - </div> |
| 1 | + <div class="col-lg-8"> |
| 2 | + <div class="panel panel-info"> |
| 3 | + <div class="panel-heading"> |
| 4 | + <i class="fa fa-info fa-fw"></i> Wallet Status |
| 5 | + </div> |
| 6 | + <div class="panel-body no-padding"> |
| 7 | + <div class="table-responsive"> |
| 8 | + <table class="table table-striped table-bordered table-hover"> |
| 9 | + <thead> |
| 10 | + <tr> |
| 11 | + <th>Version</th> |
| 12 | + <th>Protocol Version</th> |
| 13 | + <th>Wallet Version</th> |
| 14 | + <th>Peers</th> |
| 15 | + <th>Status</th> |
| 16 | + <th>Blocks</th> |
| 17 | + <th>Accounts</th> |
| 18 | + </tr> |
| 19 | + </thead> |
| 20 | + <tbody> |
| 21 | + <tr> |
| 22 | + <td>{$COININFO.version|default:""}</td> |
| 23 | + <td>{$COININFO.protocolversion|default:""}</td> |
| 24 | + <td>{$COININFO.walletversion|default:""}</td> |
| 25 | + <td>{$COININFO.connections|default:""}</td> |
| 26 | + <td><font color="{if $COININFO.errors}red{else}green{/if}">{$COININFO.errors|default:"OK"}</font></td> |
| 27 | + <td>{$COININFO.blocks|default:"0"}</td> |
| 28 | + <td>{$ADDRESSCOUNT}</td> |
| 29 | + </tr> |
| 30 | + </tbody> |
| 31 | + </table> |
| 32 | + </div> |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + </div> |
0 commit comments