summaryrefslogtreecommitdiff
path: root/rpcblockchainexplorer/templates/block.html
blob: d53cdbd6a4121bf6a9db8547d5aff40c23f11ed8 (plain)
1
2
3
4
5
6
7
8
<table>
    {% for key_name in block.keys() %}
        <tr>
            <th>{{ key_name }}</th>
            <td>{{ block[key_name] }}</td>
        </tr>
    {% endfor %}
</table>