diff options
author | Bryan Bishop <kanzure@gmail.com> | 2015-06-08 14:12:42 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2015-06-08 14:12:42 -0500 |
commit | 935f7f4e7a0ba59f131e7cf531e76b4cbfc13fcc (patch) | |
tree | ac2d04ba285fe9fa447d698e01b897dff6e9fbb0 | |
parent | 28db9125d9411d357ca173392dcc842f8a5f2ce3 (diff) | |
download | rpcblockchainexplorer-935f7f4e7a0ba59f131e7cf531e76b4cbfc13fcc.tar.gz rpcblockchainexplorer-935f7f4e7a0ba59f131e7cf531e76b4cbfc13fcc.zip |
apply css classes to tables
-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> |