{% extends "base.html" %} {% import "macro/template_and_block.html" as block %} {% import "macro/pagination.html" as pagination %} {% import "macro/opengraph.html" as opengraph %} {% block opengraph %} {{ opengraph::og( title="DEBUG - Template Selection", description="Shows debug information about the template selection process", url="/debug/template-selection", image_url="/og_image/index.png" ) }} {% endblock opengraph %} {% block content %}

Template Selection

Information about the template selection process

This is a debug page. It lists per block information about the template selection process. For more information about the template selection methodology see FAQ: Methodology - How is the best template for the template to block comparison selected?

{% for infos_and_block in template_selection_infos %}
Templates and Block {{ infos_and_block.block.hash }}
height {{ infos_and_block.block.height }}
mined by {% if infos_and_block.block.pool_name == "Unknown"%} Unknown pool {% else %} {{ infos_and_block.block.pool_name }} {% endif %}
block header time {{ infos_and_block.block.block_time | date(format="%H:%M:%S") }} UTC
block seen time {{ infos_and_block.block.block_seen_time | date(format="%H:%M:%S") }} UTC {% for info in infos_and_block.infos %} {% endfor %}
Avaliable Templates. The selected template is bold.
# Template Time Missing Extra Missing + Extra Shared
{{ loop.index }} {{ info.template_time | date(format="%H:%M:%S") }} UTC {{ info.count_missing }} {{ info.count_extra }} {{ info.count_extra + info.count_missing }} {{ info.count_shared }}
{{ block::explorers(hash=infos_and_block.block.hash) }}
{% endfor %} {{ pagination::pagination(MAX_PAGES=MAX_PAGES, CURRENT_PAGE=CURRENT_PAGE, QUERY_PAGE=QUERY_PAGE) }}
{% endblock content %}