{% extends "pages/base.html" %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block extra_head %} {% if canonical_url %} {% endif %} {% endblock %} {% block content %}

{{ title }}

{% trans "Browse curated developer references below with quick summaries to help you choose the right guide." %}

{% if missing_document %} {% endif %}

{% trans "Indexed Documents" %}

{% if document_index_admin_changelist_url and document_index_admin_add_url %}

{% trans "Manage indexed documents" %} · {% trans "Create indexed document" %}

{% endif %} {% if indexed_groups %} {% for group in indexed_groups %}

{{ group.title }}

{% for item in group.items %}

{{ item.label }}

{{ item.description }}

{{ item.access }}
{% endfor %}
{% endfor %} {% else %}

{% trans "No indexed documents are available." %}

{% endif %}

{% trans "Other Documents" %}

{% if sections %} {% for section in sections %}

{{ section.title }}

{% if section.current_prefix and section.parent_url %}

← {% trans "Up one level" %}

{% endif %} {% if section.items %}
    {% for item in section.items %}
  • {{ item.label }} {% if item.description %}
    {{ item.description }}
    {% endif %}
  • {% endfor %}
{% else %}

{% trans "No document folders are available." %}

{% endif %} {% endfor %} {% else %}

{% trans "No document folders are available." %}

{% endif %}
{% endblock %}