summaryrefslogtreecommitdiff
path: root/rpcblockchainexplorer/templates/block.html
blob: 06cec4ad7e43b3d13260f6d7bd9ccbf0babe9a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% 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>

<h3>Transactions</h3>

<ul>
    {% for txid in txids %}
    <li><a href="/getrawtransaction/{{ txid }}">{{ txid }}</a></li>
    {% endfor %}
</ul>

{% endblock %}