{% macro format_response(r) %} HTTP/{{ r.version }} {{ r.status_code_str }} {{ r.status_phrase }} {% for hdr in r.headers.text %} {{ hdr[0] }}:{{ hdr|header_present -}} {{- hdr[0]|header_description }} {% endfor %} {%- endmacro %}
{% for nonfinal_response in resource.nonfinal_responses %}
{{ format_response(nonfinal_response) }}
{% endfor %}
{{ format_response(resource.response) }}
response headers: {{ resource.response_header_length|f_num }} bytes content: {{ resource.response.content_length|f_num }} bytes {% if resource.response.transfer_length - resource.response.content_length > 0 -%} transfer overhead: {{ (resource.response.transfer_length - resource.response.content_length)|f_num }} bytes {%- endif %}
{% if is_resource %}
{{ har_link }}
{% endif %} {% if not is_saved %} {% if allow_save %} {% endif %} {% if validator_link %} {% endif %} {% if is_resource and resource.link_count > 0 %}
{{ descend_link }}
{% endif %} {% endif %}
{% for category in formatter.note_categories %} {% for note in resource.response.notes if note.category == category %} {% if loop.first %}

{{ category.value }}{{ category|subrequest_messages }}

{% endif %} {% endfor %} {% endfor %}

{% include 'footer.html' %}