hash.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="col">
  4. <div class="card">
  5. <div class="container">
  6. <ul class="nav nav-pills mb-3 nav-tabs" id="pills-tab" role="tablist">
  7. <li class="nav-item">
  8. <a class="nav-link active" id="block-hash-tab" data-toggle="tab" href="#block-hash" role="tab" aria-controls="block-hash" aria-selected="true">Block Hashlist</a>
  9. </li>
  10. <li class="nav-item">
  11. <a class="nav-link" id="file-hash-tab" data-toggle="tab" href="#file-hash" role="tab" aria-controls="file-hash" aria-selected="false">Transaction Hashlist</a>
  12. </li>
  13. </ul>
  14. <div class="tab-content" id="myTabContent">
  15. <div class="tab-pane fade show active" id="block-hash" role="tabpanel" aria-labelledby="block-hash-tab">
  16. <table class="table">
  17. <thead class="thead-colour">
  18. <tr>
  19. <th>Block Mint Date</th>
  20. <th>Blockhash</th>
  21. </tr>
  22. </thead>
  23. {% for hash in hashchain %}
  24. <tr>
  25. <td>{{ hash.mint_date }}</td>
  26. <td>{{ hash.blockhash }}</td>
  27. </tr>
  28. {% endfor %}
  29. </table>
  30. </div>
  31. <div class="tab-pane fade" id="file-hash" role="tabpanel" aria-labelledby="file-hash-tab">
  32. <table class="table">
  33. <thead class="thead-colour">
  34. <tr>
  35. <th>Transaction Date</th>
  36. <th>Transaction Hash</th>
  37. </tr>
  38. </thead>
  39. {% for tx in txlist %}
  40. <tr>
  41. <td>{{ tx.datetime }}</td>
  42. <td>{{ tx.txhash }}</td>
  43. </tr>
  44. {% endfor %}
  45. </table>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. {% endblock %}