hash.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="container">
  4. <ul class="nav nav-pills mb-3 nav-tabs" id="pills-tab" role="tablist">
  5. <li class="nav-item">
  6. <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>
  7. </li>
  8. <li class="nav-item">
  9. <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>
  10. </li>
  11. </ul>
  12. </div>
  13. <div class="tab-content" id="myTabContent">
  14. <div class="tab-pane fade show active" id="block-hash" role="tabpanel" aria-labelledby="block-hash-tab">
  15. <div class="container">
  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>
  32. <div class="tab-pane fade" id="file-hash" role="tabpanel" aria-labelledby="file-hash-tab">
  33. <table class="table">
  34. <thead class="thead-colour">
  35. <tr>
  36. <th>Filehash</th>
  37. <th>Transaction Date</th>
  38. <th>Transaction Price</th>
  39. <th>Transaction Hash</th>
  40. </tr>
  41. </thead>
  42. {% for tx in txlist %}
  43. <tr>
  44. <td>{{ tx.filehash }}</td>
  45. <td>{{ tx.datetime }}</td>
  46. <td>{{ tx.price }}</td>
  47. <td>{{ tx.txhash }}</td>
  48. </tr>
  49. {% endfor %}
  50. </table>
  51. </div>
  52. {% endblock %}