{{ log.debug() }} {% if config.show_if_no_docstring or class.has_docstrings %}
{% if show_full_path %}{{ class.path.as_posix() }}{% else %}{{ class.name }}{% endif %}
{% if config.show_bases and class.bases %}
({% for expression in class.bases -%}
{% include "expression.html" with context %}{% if not loop.last %}, {% endif %}
{% endfor %})
{% endif %}
{% with labels = class.labels %}
{% include "labels.html" with context %}
{% endwith %}
{% endfilter %}
{% else %}
{% if config.show_root_toc_entry %}
{% filter heading(heading_level,
role="class",
id=html_id,
toc_label=class.path.as_posix(),
hidden=True) %}
{% endfilter %}
{% endif %}
{% set heading_level = heading_level - 1 %}
{% endif %}
{{ class.relative_filepath }}