{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %} {% block toolbar %} Request {{ collector.route ? collector.route : 'NONE' }} | {{ collector.format }} | {{ collector.statuscode }} | {{ collector.contenttype }} {% endblock %} {% block menu %} Request {% endblock %} {% block panel %}

Request GET Parameters

{% if collector.requestquery.all|length %} {% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestquery } only %} {% else %}

No GET parameters

{% endif %}

Request POST Parameters

{% if collector.requestrequest.all|length %} {% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestrequest } only %} {% else %}

No POST parameters

{% endif %}

Request Attributes

{% if collector.requestattributes.all|length %} {% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestattributes } only %} {% else %}

No attributes

{% endif %}

Request Cookies

{% if collector.requestcookies.all|length %} {% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestcookies } only %} {% else %}

No cookies

{% endif %}

Requests Headers

{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestheaders } only %}

Requests Server Parameters

{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestserver } only %}

Response Headers

{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.responseheaders } only %}

Response Session Attributes

{% if collector.sessionattributes|length %} {% for key, value in collector.sessionattributes %} {% endfor %}
Key Value
{{ key }} {{ value|dump }}
{% else %} No request session attributes {% endif %} {% endblock %}