{% comment %}Translators: Translation included with Django {% endcomment %} {% trans "HTTP request" %}:
{{ request.method }} {{request.prefix}}{{ request.get_full_path }}
{% comment %}Translators: Translation included with Django {% endcomment %}
{% trans "HTTP response headers" %}:
HTTP {{ response.status_code }} {{ response.status_text }}
{% autoescape off %} {% for key, val in response_headers.items %} {{ key }}: {{ val|break_long_headers|urlize_quoted_links }}
{% endfor %}
HTTP {{ response.status_code }} {{ response.status_text }}
{% autoescape off %} {% for key, val in response_headers.items %} {{ key }}: {{ val|break_long_headers|urlize_quoted_links }}
{% endfor %}
{% comment %}Translators: Translation included with Django {% endcomment %}
{% trans "HTTP response content" %}:
{% endautoescape %}
{% endautoescape %}
{% if 'GET' in allowed_methods %}
{% endif %}
{% if options_form %}
{% endif %}
{% if display_edit_forms %}
{% if post_form or raw_data_post_form %}
{% if post_form %}
{% endif %}
{% endif %}
{% if put_form or raw_data_put_form or raw_data_patch_form %}
{% endif %}
{% if delete_form %}
{% endif %}
{% endif %}
{% endblock %}
{% if api_settings.URL_FORMAT_OVERRIDE %}
{% for format in available_formats %}
{% endfor %}
{% else %}
{% blocktrans with http_method='GET' %}{{ http_method }} request{% endblocktrans %}
{% endif %}
{% with form=post_form %}
{% endwith %}
{% with form=raw_data_post_form %}
{% endwith %}
{% with form=raw_data_put_or_patch_form %}
{% endwith %}