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

{% block content %}
<table class="table table-striped">
    <tr>
        <td>blockheight</td>
        <td>blockhash</td>
    </tr>
    {% for block in blocks %}
    <tr>
        <td>{{ block["height"] }}</td>
        <td><a href="/block/{{ block["hash"] }}">{{ block["hash"] }}</a></td>
    </tr>
    {% endfor %}
</table>
{% endblock %}