summaryrefslogtreecommitdiff
path: root/rpcblockchainexplorer/templates/blocks.html
blob: cb29adabeacadc3c4ba37d87d15f74457c9b7465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "layout.html" %}

{% block content %}
<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>
{% endblock %}