summaryrefslogtreecommitdiffstats
path: root/templates/html/htmlhierarchy.tpl
blob: ff10172db3ceb6b68ef6bc382de937e45567885f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extend 'htmlbase.tpl' %}
{% block content %}
<div class="contents">
<div class="textblock">
<p>{{ tr.classHierarchyDescription }}</p>
{% if config.HAVE_DOT and config.GRAPHICAL_HIERARCHY %}
<p><a href="inherits{{ config.HTML_FILE_EXTENSION }}">{{ tr.gotoGraphicalHierarchy }}</a></p>
{% endif %}
</div>
{% indexentry nav name=tr.classHierarchy file=page.fileName anchor='' isReference=False %}
{% opensubindex nav %}
{% with tree=classHierarchy %}
  {% include 'htmldirtree.tpl' %}
{% endwith %}
{% closesubindex nav %}
</div>
{% endblock %}