Blame templates/html/htmlmeminherit.tpl

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