Blame templates/html/htmlmemberindex.tpl

Packit Service 50c9f2
{# input: list #}
Packit Service 50c9f2
{% set singleList=(list|length<=maxItemsForFlatList) or (list|length>maxItemsForMultiPageList) %}
Packit Service 50c9f2
{% if singleList %}
Packit Service 50c9f2
    Packit Service 50c9f2
    {% endif %}
    Packit Service 50c9f2
    {% with index=list|alphaIndex:'name' %}
    Packit Service 50c9f2
      {% for section in index %}
    Packit Service 50c9f2
        {% if not singleList or letter=='' or section.letter==letter %}
    Packit Service 50c9f2
          {% if not singleList %}
    Packit Service 50c9f2
          

    - {{ section.letter }} -

    Packit Service 50c9f2
          
      Packit Service 50c9f2
            {% endif %}
      Packit Service 50c9f2
            {% for nameList in section.items|groupBy:'name' %}
      Packit Service 50c9f2
              {% spaceless %}
      Packit Service 50c9f2
                {% for item in nameList|listsort:'{{item.file.name}}' %}
      Packit Service 50c9f2
                  {% if forloop.first %}
      Packit Service 50c9f2
                    
    • {{ item.name }}{% if (item.isFunction or item.isSignal or item.isSlot) and not item.isObjCMethod %}(){% endif %} : 
    • Packit Service 50c9f2
                  {% endif %}
      Packit Service 50c9f2
                  {% with obj=item scope=item|get:scope text=scope.name %}
      Packit Service 50c9f2
                     {% include 'htmlobjlink.tpl' %}
      Packit Service 50c9f2
                  {% endwith %}
      Packit Service 50c9f2
                  {% if not forloop.last %}, 
      Packit Service 50c9f2
                  {% else %}
      Packit Service 50c9f2
                    
      Packit Service 50c9f2
                  {% endif %}
      Packit Service 50c9f2
                {% endfor %}
      Packit Service 50c9f2
              {% endspaceless %}
      Packit Service 50c9f2
            {% endfor %}
      Packit Service 50c9f2
            {% if not singleList %}
      Packit Service 50c9f2
            
      Packit Service 50c9f2
            {% endif %}
      Packit Service 50c9f2
          {% endif %}
      Packit Service 50c9f2
        {% endfor %}
      Packit Service 50c9f2
      {% endwith %}
      Packit Service 50c9f2
      {% if singleList %}
      Packit Service 50c9f2
      Packit Service 50c9f2
      {% endif %}