{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %} {% block toolbar %} {% set profiler_markup_version = profiler_markup_version|default(1) %}
{% if profiler_markup_version == 1 %}
{{ collector.pushTotal }}
{% else %}
{{ collector.pushTotal }}
{% endif %}
Push
{{ collector.pushTotal }}
{% for pusher, duration in collector.durations %}
{{ pusher|upper }} ({{ collector.pusherCounts[pusher] }})
{{ '%0.2f'|format(duration) }} ms
{% endfor %}
Total time
{{ '%0.2f'|format(collector.totalDuration) }} ms
{% endblock %}