{% if path.template_name %} {% endif %}
Host: {{ path.headers.Host }}
Method: {{ path.method }}
Status: {{ path.status_code }}
Path: {{ path.path }}
Response content type: {{ path.content_type }}
Templates: {{ path.template_name }}
{ {% for key, value in path.headers.items %} {% if value %} {{ key }}: {{ value }} {% endif %} {% endfor %} }
{ {% for key, value in path.params.items %} {% if value %} {{ key }}: {{ value }} {% endif %} {% endfor %} }
{% if path.message %} {% if path.content_type == "application/json" %} { {% for key, value in path.messsage.items %} {{ key }}: {{ value }} {% endfor %} } {% else %} {{ path.message|safe }} {% endif %} {% else %} { } {% endif %}
{ {% for key, value in path.files.items %} {% if value %} {{ key }}: {{ value }} {% endif %} {% endfor %} }