{% if obj.members %} {{ log.debug("Rendering children of " + obj.path) }}
{# Notice inherited members false #} {% with attributes = obj.attributes|filter_objects( filters=config.filters, members_list=members_list, inherited_members=false, keep_no_docstrings=config.show_if_no_docstring, ) %} {% for attribute in attributes %} {% endfor %}
Name Type Description Default
{{ attribute.name }} {% if attribute.annotation %} {% with expression = attribute.annotation %} {% include "expression.html" with context %} {% endwith %} {% endif %}
{{ attribute.docstring.value }}
{% if attribute.value %} {% with expression = attribute.value %} {% include "expression.html" with context %} {% endwith %} {% else %} - {% endif %}
{%endwith %} {% with classes = obj.classes|filter_objects( filters=config.filters, members_list=members_list, inherited_members=false, keep_no_docstrings=config.show_if_no_docstring, ) %} {% for class in classes %} {% filter heading(heading_level, id=html_id ~ "-attributes") %}{{class.name}}{% endfilter %}
{% set root = False %} {% set heading_level = heading_level + 1 %} {% set old_obj = obj %} {% set obj = class %} {% include "attributes_table.html" with context %} {% set obj = old_obj %}
{% endfor %} {%endwith %}
{% endif %}