{% extends '@WebProfiler/Profiler/layout.html.twig' %} {% block toolbar %} {% set time = collector.templatecount ? '%0.0f ms'|format(collector.time) : 'n/a' %} {% set icon %} Twig {{ time }} {% endset %} {% set text %}
Render Time {{ time }}
Template Calls {{ collector.templatecount }}
Block Calls {{ collector.blockcount }}
Macro Calls {{ collector.macrocount }}
{% endset %} {% include '@WebProfiler/Profiler/toolbar_item.html.twig' with { 'link': profiler_url } %} {% endblock %} {% block menu %} Twig Twig {{ collector.templatecount }} {{ '%0.0f ms'|format(collector.time) }} {% endblock %} {% block panel %} {% if collector.templatecount %}

Twig Stats

Total Render Time
including sub-requests rendering time
{{ '%0.0f ms'|format(collector.time) }}
Template Calls
{{ collector.templatecount }}
Block Calls
{{ collector.blockcount }}
Macro Calls
{{ collector.macrocount }}

Rendered Templates

{% for template, count in collector.templates %} {% endfor %}
Template Name Render Count
{{ template }}
{{ count }}

Rendering Call Graph

{{ collector.htmlcallgraph }} {% else %}

No Twig templates were rendered for this request.

{% endif %} {% endblock %}