Skip to content

Commit 2566b67

Browse files
authored
Update status.tpl
by adding <div class="table-responsive"> it will fix a display issue on the mobile version while looking at wallet status
1 parent 40ba374 commit 2566b67

File tree

1 file changed

+35
-32
lines changed

1 file changed

+35
-32
lines changed

Diff for: templates/bootstrap/admin/wallet/status.tpl

+35-32
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,35 @@
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

Comments
 (0)