Request
{{ stack.clientRequest|httplug_markup|nl2br }}
Response
{{ stack.clientResponse|httplug_markup|nl2br }}
{% if stack.profiles %}
{% for profile in stack.profiles %}
{{ profile.plugin }}
Request
{{ profile.request|httplug_markup|nl2br }}
Response
{{ profile.response|httplug_markup|nl2br }}
{% if not loop.last %}
{% endif %}
{% endfor %}
{% endif %}
{% for child in collector.childrenStacks(stack) %}
{% include '@Httplug/stack.html.twig' with {
'collector': collector,
'client': client,
'stack': child,
'id': id ~ '-' ~ loop.index
} only %}
{% endfor %}