insight-ui-zcash/public/views/blocks/list.html

18 lines
448 B
HTML
Raw Normal View History

<section data-ng-controller="BlocksController" data-ng-init="list()">
2014-01-08 06:55:06 -08:00
<div class="page-header">
<h1>Blocks by Date</h1>
</div>
<table class="table table-striped">
<thead>
<th>Hash</th>
<th>Solved at</th>
</thead>
<tbody>
<tr data-ng-repeat="block in blocks">
<td><a href="#!/block/{{block.hash}}">{{block.hash}}</a></td>
<td>{{block.time}}</td>
</tr>
</tbody>
</table>
</section>