diff --git a/web/explorer/explorer-server/templates/pages/block.html b/web/explorer/explorer-server/templates/pages/block.html index ddee68281..49cc3b6d2 100644 --- a/web/explorer/explorer-server/templates/pages/block.html +++ b/web/explorer/explorer-server/templates/pages/block.html @@ -1,212 +1,224 @@ {% extends "base.html" %} {% import "components/loader_fullpage.html" as loader %} {% block body_classes %}overflow-y-scroll{% endblock %} {% block footer_classes %}hidden{% endblock %} {% block content %}

Block #{{ block_info.height }}

{% if block_info.height != 0 %} Previous Block {% endif %} {% if block_info.height == 0 %}
Previous Block
{% endif %} {% if block_info.height == best_height %} |
Next Block
{% endif %} {% if block_info.height != best_height %} | Next Block {% endif %}
Hash {{ block_hex }}
Copy to clipboard
- + + + + + +
Age {{ timestamp|human_time }}
Unix Timestamp {{ block_info.timestamp|to_i128|render_integer|safe }}
Confirmations{{ confirmations }} + {{ confirmations }} {% if + block_info.is_final %}(Final){% else %}(Not + final){% endif %} +
Final + {% if block_info.is_final %}Yes{% else + %}No{% endif %} +
Mined on
Mined by Unknown
Difficulty {{ difficulty|render_difficulty|safe }}
Size {{ block_info.block_size|render_human_size }} ({{ block_info.block_size|to_i128|render_integer_smallify|safe }} B)
Transactions {{ block_info.num_txs }}
Advanced block data
Coinbase data {{ coinbase_data|string_from_lossy_utf8 }}
Coinbase hex
{{ coinbase_data|hexify_u8_vector }}

Transactions

{% call loader::render() %}
{% endblock %}