{% for html in lang_intro_htmls %}
{% include html %}
{% endfor %}
{% 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 %}