{% extends "rest_framework_docs/docs.html" %} {% load drfdocs_filters %} {% block apps_menu %} {% regroup endpoints by name_parent as endpoints_grouped %} {% endblock %} {% block content %} {% regroup endpoints by name_parent as endpoints_grouped %} {% if endpoints_grouped %} {% for group in endpoints_grouped %}

{{group.grouper}}

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

{{ endpoint.docstring|markdown }}

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

Fields:

{%include "rest_framework_docs/components/fields_list.html" with fields=endpoint.fields %} {% 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 %}