{% extend 'htmlbase.tpl' %} {% msg %}Generating HTML output for directory {{ compound.name }}{% endmsg %} {% block navpath %} {% if compound.navigationPath %} {% endif %} {% endblock %} {% block title %} {# write summary links in the title area #}
{% with first=True %} {% if compound.dirs %} {{ tr.directories }} {% set first=False %} {% endif %} {% if compound.files %} {% if not first %} | {% endif %} {{ tr.files }} {% set first=False %} {% endif %} {% endwith %}
{{ block.super }} {% endblock %} {% block content %}
{# brief description #} {% if compound.brief %} {{ compound.brief }} {% if compound.hasDetails %} {{ tr.more }} {% endif %} {% endif %} {# dir graph #} {# TODO #} {# member declarations #} {# directories #} {% with list=compound.dirs label='subdirs' title=tr.directories local=False %} {% include 'htmldeclcomp.tpl' %} {% endwith %} {# files #} {% with list=compound.files, label='files' title=tr.files local=False %} {% include 'htmldeclcomp.tpl' %} {% endwith %} {# end member declarations #} {# detailed description #} {% if compound.hasDetails %} {# anchor #} {# header #}

{{ tr.detailedDesc }}

{# brief #} {% if compound.brief and config.REPEAT_BRIEF %}

{{ compound.brief }}

{% endif %} {# details #} {{ compound.details }}
{% endif %}
{% endblock %}