{% extends "base.html" %} {% load cache %} {% block content %}
{% if request.path|slice:":3" == "api" %}
Looking for the interactive API documentation? View Swagger UI
{% endif %}
{% if request.path|slice:":3" == "api" and request.path != '/api/schema/swagger-ui/' and request.path != '/api/schema/redoc/' and request.path != '/api/docs/' %}

This API documentation page has moved!

We now provide auto-generated, interactive API documentation that's always up-to-date.

{% endif %}

{{ meta.title }}

{% if meta.description %}

{{ meta.description }}

{% endif %} {% if toc_html %}

On this page

{{ toc_html|safe }}
{% endif %}
{% cache 86400 docs_body slug %} {{ html|safe }} {% endcache %}
{% if request.path|slice:":3" == "api" %}

Interactive API Documentation

We provide auto-generated, interactive API documentation for developers. This documentation is always up-to-date with our latest API features.

{% endif %}
{% comment %}

Debug Icon Values:

    {% for doc_page in all_doc_pages %}
  • {{ doc_page.title }}: icon = "{{ doc_page.icon }}"
  • {% endfor %}
{% endcomment %}
{% endblock %}