diff options
-rw-r--r-- | rpcblockchainexplorer/templates/block.html | 2 | ||||
-rw-r--r-- | rpcblockchainexplorer/templates/blocks.html | 2 | ||||
-rw-r--r-- | rpcblockchainexplorer/templates/transaction.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/rpcblockchainexplorer/templates/block.html b/rpcblockchainexplorer/templates/block.html index 1bebc6e..6807550 100644 --- a/rpcblockchainexplorer/templates/block.html +++ b/rpcblockchainexplorer/templates/block.html @@ -1,7 +1,7 @@ {% extends "layout.html" %} {% block content %} -<table> +<table class="table table-striped"> {% for key_name in block.keys() %} <tr> <th>{{ key_name }}</th> diff --git a/rpcblockchainexplorer/templates/blocks.html b/rpcblockchainexplorer/templates/blocks.html index e7bacd5..f4b079a 100644 --- a/rpcblockchainexplorer/templates/blocks.html +++ b/rpcblockchainexplorer/templates/blocks.html @@ -1,7 +1,7 @@ {% extends "layout.html" %} {% block content %} -<table> +<table class="table table-striped"> <tr> <td>blockheight</td> <td>blockhash</td> diff --git a/rpcblockchainexplorer/templates/transaction.html b/rpcblockchainexplorer/templates/transaction.html index dde57ed..112ee3d 100644 --- a/rpcblockchainexplorer/templates/transaction.html +++ b/rpcblockchainexplorer/templates/transaction.html @@ -1,7 +1,7 @@ {% extends "layout.html" %} {% block content %} -<table> +<table class="table table-striped"> <tr> <th>block</th> <td><a href="/block/{{ blockhash }}">{{ blockhash }}</a></td> |