~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/sphinxdoc/py-modindex.html

  • Committer: franku
  • Date: 2018-05-06 08:20:39 UTC
  • mto: This revision was merged to the branch mainline in revision 494.
  • Revision ID: somal@arcor.de-20180506082039-v8n40alffhi2ulct
This is an Attribute error

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends 'sphinxdoc/documentation.html' %}
 
2
 
 
3
{% block doc_body %}
 
4
    <h1>Module Index</h1>
 
5
    <dl> 
 
6
    {% for c in doc.content %}
 
7
        {% for modul, level, fname, mainmod, unknown1, unknown2, descr in c.1 %}
 
8
            {% if level < 2 %}
 
9
            <dt><a href="../{{ fname }}">{{ modul }}</a></dt>
 
10
            <dd>{{ descr }}
 
11
            {% else %}
 
12
                <dl>
 
13
                    <dt><a href="../{{ fname }}">{{ modul }}</a></dt>
 
14
                    <dd>{{ descr }}</dd>
 
15
                </dl>
 
16
            {% endif %}
 
17
        {% endfor %}
 
18
        </dd>
 
19
    {% endfor %}
 
20
    </dl>
 
21
    <br />
 
22
{% endblock doc_body %}
 
23
{% block doc_toc %}{% endblock %}