blob: c89677a4fa7e6c6d7e405a4e6a5fa41d08c17c07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<table>
<tr>
<td>blockheight</td>
<td>blockhash</td>
</tr>
{% for block in blocks %}
<tr>
<td>{{ block["height"] }}</td>
<td>{{ block["hash"] }}</td>
</tr>
{% endfor %}
</table>
|