Merge pull request #228 from cmgustavo/feature/06lookandfeel
fix table of blocks and txs
This commit is contained in:
commit
338947b321
@ -12,8 +12,8 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>Height</th>
|
<th>Height</th>
|
||||||
<th>Age</th>
|
<th>Age</th>
|
||||||
<th><span class="ellipsis">Transactions</span></th>
|
<th class="text-right"><span class="ellipsis">Transactions</span></th>
|
||||||
<th>Size</th>
|
<th class="text-right">Size</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -23,8 +23,8 @@
|
|||||||
<a href="/block/{{b.hash}}">{{b.height}}</a>
|
<a href="/block/{{b.hash}}">{{b.height}}</a>
|
||||||
</td>
|
</td>
|
||||||
<td><span class="ellipsis">{{humanSince(b.time)}}</span></td>
|
<td><span class="ellipsis">{{humanSince(b.time)}}</span></td>
|
||||||
<td>{{b.tx.length}}</td>
|
<td class="text-right">{{b.tx.length}}</td>
|
||||||
<td>{{b.size}}</td>
|
<td class="text-right">{{b.size}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
@ -35,8 +35,8 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Hash</th>
|
<th>Hash</th>
|
||||||
<th>Size</th>
|
<th class="text-right">Size</th>
|
||||||
<th>Value Out</th>
|
<th class="text-right">Value Out</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -45,8 +45,8 @@
|
|||||||
<td>
|
<td>
|
||||||
<a class="ellipsis" href="/tx/{{tx.txid}}">{{tx.txid}}</a>
|
<a class="ellipsis" href="/tx/{{tx.txid}}">{{tx.txid}}</a>
|
||||||
</td>
|
</td>
|
||||||
<td><span class="ellipsis">{{tx.size}}</span></td>
|
<td class="text-right"><span class="ellipsis">{{tx.size}} bytes</span></td>
|
||||||
<td><span class="ellipsis">{{tx.valueOut}}</span></td>
|
<td class="text-right"><span class="ellipsis">{{tx.valueOut}} BTC</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user