{% load rest_framework %}

{{ document.title }}

{% if document.description %}

{% render_markdown document.description %}

{% endif %}
{% if 'shell' in langs %}{% include "rest_framework/docs/langs/shell-intro.html" %}{% endif %} {% if 'python' in langs %}{% include "rest_framework/docs/langs/python-intro.html" %}{% endif %} {% if 'javascript' in langs %}{% include "rest_framework/docs/langs/javascript-intro.html" %}{% endif %}
{% if document.data %} {% for section_key, section in document.data|items %} {% if section_key %}

{{ section_key }}

{% endif %} {% for link_key, link in section|schema_links|items %} {% include "rest_framework/docs/link.html" %} {% endfor %} {% endfor %} {% for link_key, link in document.links|items %} {% include "rest_framework/docs/link.html" %} {% endfor %} {% endif %}