{% extends "base.html" %} {% block body %}
{% set level = 1 %} {% if module['docstring'] %} {% set docstring = module['docstring'] %}

{% include 'docstring.html' %}

{% endif %} {% if module['variables'] %}

Constants

{% for constant in module['variables'] %} {% include 'constant.html' %} {% endfor %} {% endif %} {% if module['classes'] %}

Classes

{% set level = 3 %} {% for class in module['classes'] %} {% include 'class.html' %} {% endfor %} {% endif %}
{% endblock %}