mining_transaction.html 761 B

1234567891011121314151617181920212223242526272829
  1. {% from "macros.html" import make_short %}
  2. {% if not transaction.senders %}
  3. <div class="transaction reward mycard" >
  4. <div class="mycard-header"><h3>Mining Reward</h3> </div>
  5. <table class="mycard-body">
  6. <tr>
  7. <th>Hash</th>
  8. <td>{{make_short(transaction.hash,"transaction")}}</td>
  9. </tr>
  10. <tr>
  11. <th>Timestamp</th>
  12. <td>{{transaction.timestamp}}</td>
  13. </tr>
  14. {% for target in transaction.targets-%}
  15. <tr>
  16. <th>Miner</th>
  17. <td>{{make_short(target.recipient_pk,"address")}}</td>
  18. </tr>
  19. <tr>
  20. <th>Amount</th>
  21. <td>{{target.amount}}</td>
  22. </tr>
  23. {%- endfor %}
  24. </table>
  25. </div>
  26. {%endif %}