Imported Upstream version 1.8.9
[platform/upstream/doxygen.git] / templates / html / htmlallmembers.tpl
1 {% extend 'htmlbase.tpl' %}
2
3 {% block title %}
4   <div class="headertitle"><div class="title">{{ compound.name }} {{ tr.memberList }}</div></div>
5 {% endblock %}
6
7 {% block content %}
8 <div class="contents">
9 <p>{{ tr.theListOfAllMembers }} <a class="el" href="{{ compound.fileName }}{{ config.HTML_FILE_EXTENSION }}">{{ compound.name }}</a>{{ tr.incInheritedMembers }}</p>
10 <table class="directory">
11 {% for mi in compound.allMembersList %}
12   <tr {% cycle 'class="even"' '' %}>
13   {# TODO: objective-C #}
14   <td>{% with obj=mi.member text=mi.ambiguityScope|append:mi.member.name %}
15       {% include 'htmlobjlink.tpl' %}
16       {% endwith %}
17   </td>
18   </tr>
19 {% endfor %}
20 </table>
21 </div>
22 {% endblock %}