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

18 lines
448 B
HTML

<section data-ng-controller="BlocksController" data-ng-init="list()">
<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>