Blame templates/html/htmljsmenumembersdata.tpl

Packit Service 50c9f2
{# all members #}
Packit Service 50c9f2
{% with list=page.all section='' text=tr.all %}
Packit Service 50c9f2
  {% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
{% endwith %}
Packit Service 50c9f2
{# functions #}
Packit Service 50c9f2
{% if page.functions %}
Packit Service 50c9f2
  {% with list=page.functions section='_func' text=tr.functions %}
Packit Service 50c9f2
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
  {% endwith %}
Packit Service 50c9f2
{% endif %}
Packit Service 50c9f2
{# variables #}
Packit Service 50c9f2
{% if page.variables %}
Packit Service 50c9f2
  {% with list=page.variables section='_vars' text=tr.variables %}
Packit Service 50c9f2
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
  {% endwith %}
Packit Service 50c9f2
{% endif %}
Packit Service 50c9f2
{# typedefs #}
Packit Service 50c9f2
{% if page.typedefs %}
Packit Service 50c9f2
  {% with list=page.typedefs section='_type' text=tr.typedefs %}
Packit Service 50c9f2
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
  {% endwith %}
Packit Service 50c9f2
{% endif %}
Packit Service 50c9f2
{# enums #}
Packit Service 50c9f2
{% if page.enums %}
Packit Service 50c9f2
  {% with list=page.enums section='_enum' text=tr.enums %}
Packit Service 50c9f2
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
  {% endwith %}
Packit Service 50c9f2
{% endif %}
Packit Service 50c9f2
{# enumValues #}
Packit Service 50c9f2
{% if page.enumValues %}
Packit Service 50c9f2
  {% with list=page.enumValues section='_eval' text=tr.enumValues %}
Packit Service 50c9f2
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
  {% endwith %}
Packit Service 50c9f2
{% endif %}
Packit Service 50c9f2
{# macros #}
Packit Service 50c9f2
{% if page.macros %}
Packit Service 50c9f2
  {% with list=page.macros section='_defs' text=tr.macros %}
Packit Service 50c9f2
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
  {% endwith %}
Packit Service 50c9f2
{% endif %}
Packit Service 50c9f2
{# properties #}
Packit Service 50c9f2
{% if page.properties %}
Packit Service 50c9f2
  {% with list=page.properties section='_prop' text=tr.properties %}
Packit Service 50c9f2
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
  {% endwith %}
Packit Service 50c9f2
{% endif %}
Packit Service 50c9f2
{# events #}
Packit Service 50c9f2
{% if page.events %}
Packit Service 50c9f2
  {% with list=page.events section='_evnt' text=tr.events %}
Packit Service 50c9f2
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
  {% endwith %}
Packit Service 50c9f2
{% endif %}
Packit Service 50c9f2
{# related #}
Packit Service 50c9f2
{% if page.related %}
Packit Service 50c9f2
  {% with list=page.related section='_rela' text=tr.related %}
Packit Service 50c9f2
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit Service 50c9f2
  {% endwith %}
Packit Service 50c9f2
{% endif %}