{% extends "rest_framework_docs/docs.html" %} {% block apps_menu %} {% regroup endpoints by labels as endpoints_grouped %} {% if endpoints_grouped|length > 1 %} {% endif %} {% endblock %} {% block content %} {% regroup endpoints by labels as endpoints_grouped %} {% if endpoints_grouped %} {% for group in endpoints_grouped %}

{% if group.grouper.parent %} {{ group.grouper.name }} {% endif %}

{% for endpoint in group.list %}
{% if endpoint.docstring %}

{{ endpoint.docstring|linebreaksbr }}

{% endif %} {% if endpoint.errors %} {% endif %} {% if endpoint.fields %}

Fields:

{% include 'rest_framework_docs/fields.html' with item=endpoint only %} {% elif not endpoint.errors %}

No fields.

{% endif %}
{% endfor %}
{% endfor %} {% elif not query %}

There are currently no api endpoints to document.

{% else %}

No endpoints found for {{ query }}.

{% endif %} {% endblock %}