diff options
Diffstat (limited to 'templates/html/htmlallmembers.tpl')
-rw-r--r-- | templates/html/htmlallmembers.tpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/html/htmlallmembers.tpl b/templates/html/htmlallmembers.tpl index 98f88d6..e4b8460 100644 --- a/templates/html/htmlallmembers.tpl +++ b/templates/html/htmlallmembers.tpl @@ -9,11 +9,13 @@ <p>{{ tr.theListOfAllMembers }} <a class="el" href="{{ compound.fileName }}{{ config.HTML_FILE_EXTENSION }}">{{ compound.name }}</a>{{ tr.incInheritedMembers }}</p> <table class="directory"> {% for mi in compound.allMembersList %} - <tr {% cycle 'class="even"' '' %}> + <tr class="{% cycle 'even' 'odd' %}"> {# TODO: objective-C #} - <td>{% with obj=mi.member text=mi.ambiguityScope|append:mi.member.name %} + <td class="entry">{% with obj=mi.member text=mi.ambiguityScope|append:mi.member.name %} {% include 'htmlobjlink.tpl' %} {% endwith %} + {# TODO: add arguments #} + {# TODO: add column with scope #} </td> </tr> {% endfor %} |