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

block transactions go here