summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rpcblockchainexplorer/templates/blocks.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpcblockchainexplorer/templates/blocks.html b/rpcblockchainexplorer/templates/blocks.html
index cb29ada..e7bacd5 100644
--- a/rpcblockchainexplorer/templates/blocks.html
+++ b/rpcblockchainexplorer/templates/blocks.html
@@ -9,7 +9,7 @@
{% for block in blocks %}
<tr>
<td>{{ block["height"] }}</td>
- <td>{{ block["hash"] }}</td>
+ <td><a href="/block/{{ block["hash"] }}">{{ block["hash"] }}</a></td>
</tr>
{% endfor %}
</table>