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