{% 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 %}
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 %}# | 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 }} |