Blame templates/html/htmlmeminherit.tpl

Packit 1c1d7e
{# input: info (with .id .inheritedFrom and .members) #}
Packit 1c1d7e
Packit 1c1d7e
Packit 1c1d7e
- 
Packit 1c1d7e
  {% markers mark in info.inheritedFrom with tr.inheritedFrom %}
Packit 1c1d7e
    {% if markers.id==0 %} {# the title mark #}
Packit 1c1d7e
      {{ mark }}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
    {% if markers.id==1 %} {# the class link mark #}
Packit 1c1d7e
      {% with obj=mark text=mark.name %}
Packit 1c1d7e
        {% include 'htmlobjlink.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
  {% endmarkers %}
Packit 1c1d7e
Packit 1c1d7e
{% with inheritId=info.id anonymousNestingLevel=0 %}
Packit 1c1d7e
  {% for member in info.members %}
Packit 1c1d7e
    {% include 'htmlmemdecl.tpl' %}
Packit 1c1d7e
  {% endfor %}
Packit 1c1d7e
{% endwith %}