unconfirmed_transactions.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {% extends "layout.html" %}
  2. {% block body %}
  3. <div>
  4. {% for key, transaction in data.items() -%}
  5. <div>
  6. <h3><a href = "/transaction/{{transaction.hash}}" >{{transaction.hash}}</a></h3>
  7. </div>
  8. <table>
  9. <tr>
  10. <th>From:</th>
  11. <th>To:</th>
  12. <th>Value:</th>
  13. </tr>
  14. <tr>
  15. <td>
  16. {% if transaction.senders %}
  17. {% for sender in transaction.senders -%}
  18. <a href = "/address/{{sender}}" >{{sender}}</a><br>
  19. {%- endfor %}
  20. {% else %}
  21. Mining Reward
  22. {%endif %}
  23. </td>
  24. <td>
  25. {% for target in transaction.targets -%}
  26. <a href = "/address/{{target.recipient_pk}}" >{{target.recipient_pk}}</a> <br>
  27. {%- endfor %}
  28. </td>
  29. <td>
  30. {% for target in transaction.targets -%}
  31. {{target.amount}} <br>
  32. {%- endfor %}
  33. </td>
  34. </tr>
  35. </table>
  36. {%- endfor %}
  37. </div>
  38. {% endblock %}