{% extends "rest_framework/tailwind/base.html" %} {% load tailwind_tags rest_framework %} {% block content %}
{# Left: endpoint navigation — sticky, fixed width #} {# Center: fluid content #}
{% if breadcrumblist %} {% endif %} {# Endpoint header #} {% if name or description %}

{{ name }}

{% if description %}
{{ description }}
{% endif %} {# Request line: method + URL + copy, single quiet bar #}
{{ request.method|default:"GET" }} {{ request.get_full_path }}
{% if available_formats %}
Formats: {% for format in available_formats %} {{ format }} {% endfor %}
{% endif %}
{% endif %} {% include "rest_framework/tailwind/components/response_viewer.html" %} {% include "rest_framework/tailwind/components/request_console.html" %} {% include "rest_framework/tailwind/components/pagination.html" %} {# Meta moves below content on narrow screens #}
{% include "rest_framework/tailwind/components/sidebar.html" %}
{# Right: API meta (info / auth) — sticky, fixed width #}
{% endblock %}