{% extends "layout.html" %} {% block body %}

Block

ID {{data.id}}
Hash {{data.hash}}
Previous Block {{data.prev_block_hash}}
Time {{data.time}}
Nonce {{data.nonce}}
Merkle Root {{data.merkle_root_hash}}
Height {{data.height}}
Difficulty {{data.difficulty}}
{% for transaction in data.transactions -%} {% if not transaction.senders %} {% include "mining_transaction.html" %} {% else %} {% include "from_to_transaction.html" %} {%endif %} {%- endfor %}
{% endblock %}