block.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!--
  2. This file is part of DarkFi (https://dark.fi)
  3. Copyright (C) 2020-2026 Dyne.org foundation
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as
  6. published by the Free Software Foundation, either version 3 of the
  7. License, or (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. -->
  15. {% extends "base.html" %}
  16. {% block title %}Block {{ block[0] }}{% endblock %}
  17. {% block content %}
  18. <div class="content-container">
  19. <!-- Block Details Header -->
  20. <div class="content-header" style="padding-bottom: 8px">
  21. <h2 class="content-section-header">Block Details</h2>
  22. <div class="">{{ block[0] }}</div>
  23. </div>
  24. <!-- Block Details -->
  25. <ul>
  26. <li><strong>Version:</strong> {{ block[1] }}</li>
  27. <li><strong>Previous:</strong> <a href="../block/{{ block[2] }}">{{ block[2] }}</a></li>
  28. <li><strong>Height:</strong> {{ block[3] }}</li>
  29. <li><strong>Timestamp:</strong> {{ block[4] }}</li>
  30. <li><strong>Nonce:</strong> {{ block[5] }}</li>
  31. <li><strong>Transactions Root:</strong> {{ block[6] }}</li>
  32. <li><strong>State Root:</strong> {{ block[7] }}</li>
  33. <li><strong>Proof of Work type:</strong> {{ block[8] }}</li>
  34. <li><strong>Signature:</strong> {{ block[9] }}</li>
  35. </ul>
  36. <!-- Page Content Divider -->
  37. <hr class="content-divider"/>
  38. <!-- Block Transactions -->
  39. <div class="content-section" style="padding-top: 12px">
  40. <h2 class="content-section-header">Block Transactions</h2>
  41. <ul>
  42. {% for transaction in transactions %}
  43. <li><a href="../tx/{{ transaction[0] }}">{{ transaction[0] }}</a></li>
  44. {% endfor %}
  45. </ul>
  46. </div>
  47. </div>
  48. {% endblock %}