{% extends "base.html" %} {% set coinbase = block.coinbase %} {% block page_container -%}
Block
 Index {{ block.idx }}
 Hash {{ block.block_hash }}
 Target {{ block.target }}
 Version {{ block.version }}
 Timestamp {{ block.timestamp_dt | utc_datetime }}
 Proof Of Work {{ block.proof_of_work }}
 Merkle Root {{ block.merkle_root }}
 Previous Block Hash {{ block.prev_hash }}
 Next Block Hash {% for next_block in block_dao.next %}{{ next_block.block_hash }}
{% else %}None{% endfor %}
Block Transactions
{%- for t in block.txns %} {%- endfor %}
Transaction ID Timestamp
{% if t == coinbase %}{% else %}{% endif %} {{ t.txid }} {{ t.timestamp_dt | utc_datetime }}
{%- endblock %}