Merge pull request #217 from cmgustavo/feature/05lookandfeel

blocklist: removed column of confirmations
This commit is contained in:
Mario Colque 2014-02-10 17:00:16 -02:00
commit 5e237a7b03
2 changed files with 2 additions and 6 deletions

View File

@ -33,19 +33,17 @@
<th>Timestamp</th>
<th>Transactions</th>
<th>Size</th>
<th>Confirmations</th>
</tr>
</thead>
<tbody>
<tr data-ng-show="loading">
<td colspan="5">Waiting for blocks...</td>
<td colspan="4">Waiting for blocks...</td>
</tr>
<tr class="fader" data-ng-repeat='b in blocks'>
<td><a href="/block/{{b.hash}}">{{b.height}}</a></td>
<td>{{b.time * 1000 | date:'medium'}}</td>
<td>{{b.tx.length}}</td>
<td>{{b.size}}</td>
<td>{{b.confirmations}}</td>
</tr>
</tbody>
</table>

View File

@ -14,11 +14,10 @@
<th>Age</th>
<th><span class="ellipsis">Transactions</span></th>
<th>Size</th>
<th><span class="ellipsis">Confirmations</span></th>
</tr>
</thead>
<tbody>
<tr data-ng-show="!blocks.length"><td colspan="5">Waiting for blocks...</td></tr>
<tr data-ng-show="!blocks.length"><td colspan="4">Waiting for blocks...</td></tr>
<tr class="fader" data-ng-repeat='b in blocks'>
<td>
<a href="/block/{{b.hash}}">{{b.height}}</a>
@ -26,7 +25,6 @@
<td><span class="ellipsis">{{humanSince(b.time)}}</span></td>
<td>{{b.tx.length}}</td>
<td>{{b.size}}</td>
<td>{{b.confirmations}}</td>
</tr>
</tbody>
</table>