blocklist: removed column of confirmations

This commit is contained in:
Gustavo Cortez 2014-02-10 15:12:57 -03:00
parent 677678c7b0
commit ff8494c149
2 changed files with 2 additions and 6 deletions

View File

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

View File

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