{% extends "layout.html" %} {% comment %} basic/genindex.html ~~~~~~~~~~~~~~~~~~~ Template for an "all-in-one" index. :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. {% endcomment %} {% block title %}Index{% endblock %} {% block body %}

Index

{% for key, dummy in genindexentries %} {{ key }} {% if not loop.last %}| {% endif %} {% endfor %}
{% for key, entries in genindexentries %}

{{key}}

{% for column in entries|slice:":2" %} {% endfor %}
{% for entryname, (links, subitems) in column %}
{% if links %}{{entryname}} {% for link in links|slice:"1:" %}, [{{loop.index}}]{% endfor %} {% else %}{{ entryname }}{% endif %}
{% if subitems %}
{% for subentryname, subentrylinks in subitems %}
{{ subentryname }} {% for link in subentrylinks|slice:"1:" %}, [{{loop.index}}]{% endfor %}
{% endfor %}
{% endif %} {% endfor %}
{% endfor %} {% endblock %} {% block sidebarrel %} {% if split_index %}

Index

{% for key, dummy in genindexentries %} {{key}} {% if not loop.last %}| {% endif %} {% endfor %}

Full index on one page

{% endif %} {{ block.super }} {% endblock %}