summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rpcblockchainexplorer/templates/block.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/rpcblockchainexplorer/templates/block.html b/rpcblockchainexplorer/templates/block.html
index c760632..d53cdbd 100644
--- a/rpcblockchainexplorer/templates/block.html
+++ b/rpcblockchainexplorer/templates/block.html
@@ -1 +1,8 @@
-blockheight
+<table>
+ {% for key_name in block.keys() %}
+ <tr>
+ <th>{{ key_name }}</th>
+ <td>{{ block[key_name] }}</td>
+ </tr>
+ {% endfor %}
+</table>