{% block request_forms %}
{% if 'GET' in allowed_methods %}
{% endif %}
{% if options_form %}
{# djlint:off H029 OPTIONS is an HTTP method #}
{# djlint:on H029 #}
{% endif %}
{% if extra_actions %}
{% endif %}
{% endblock request_forms %}
{% block description %}
{{ description }}
{% endblock %}
{% if paginator %}
{% endif %}
{{ request.method }} {{ request.get_full_path }}
HTTP {{ response.status_code }} {{ response.status_text }}{% for key, val in response_headers|items %}
{{ key }}: {{ val|urlize }}{% endfor %}
{{ content|urlize }}
{% endblock %}