{% for nonfinal_response in resource.nonfinal_responses %}
{{ format_response(nonfinal_response) }}
{% endfor %}
{% if resource.fetch_error %}
{{ resource.fetch_error.desc }}
{% endif %}
{{ _("These are the response headers; hover over each one for an explanation of what it does. Headers that REDbot hasn't checked are darker.") }}
{% if resource.response.version %}
{{ format_response(resource.response) }}
{% endif %}
{{ _("Here, you can see the response body, a HAR document for the request, and when appropriate,
validate the response or check its assets (such as referenced images, stylesheets and scripts).") }}
{{
_("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 %}
{{ _("These notes explain what REDbot has found about your URL; hover over
each one for a detailed explanation.") }}
{% for category in formatter.note_categories %}
{% for note in resource.response.notes if note.category == category %}
{% if loop.first %}