{% extend 'htmlbase.tpl' %} {% msg %}Generating HTML output for directory {{ compound.name }}{% endmsg %} {% block navpath %} {% if not config.GENERATE_TREEVIEW %} {% with navpath=compound.navigationPath %} {% include 'htmlnavpath.tpl' %} {% endwith %} {% 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 #} {% if compound.hasDirGraph %} {% with obj=compound %} {% include 'htmldynheader.tpl' %} {% endwith %} {{ tr.dirDependencyGraphFor:compound.dirName }}
{% with obj=compound %} {% include 'htmldyncontents.tpl' %} {% endwith %} {{ compound.dirGraph }} {% endif %} {# 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 %}