Blame templates/html/htmldir.tpl

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

{{ tr.detailedDesc }}

Packit 1c1d7e
  
Packit 1c1d7e
  {# brief #}
Packit 1c1d7e
  {% if compound.brief and config.REPEAT_BRIEF %}
Packit 1c1d7e
    

Packit 1c1d7e
    {{ compound.brief }}
Packit 1c1d7e
    

Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
  {# details #}
Packit 1c1d7e
  {{ compound.details }}
Packit 1c1d7e
  
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
Packit 1c1d7e
{% endblock %}
Packit 1c1d7e