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

{% block content %}
<table>
    {% for key_name in block.keys() %}
        <tr>
            <th>{{ key_name }}</th>
            <td>{{ block[key_name] }}</td>
        </tr>
    {% endfor %}
</table>

block transactions go here
{% endblock %}