Light
Navigation
{{ project.name }}
« Solution
⬡ Hierarchy
{% set types = [ ('function_block', 'FB'), ('program', 'PRG'), ('function', 'FN'), ('interface', 'ITF'), ('gvl', 'GVL'), ('struct', 'ST'), ('enum', 'ENUM'), ] %} {% for type_key, type_label in types %} {% set objs = project.objects | selectattr('obj_type', 'equalto', type_key) | list %} {% if objs %}
{{ type_label }}
{% for obj in objs %}
{{ obj.name }}
{% endfor %} {% endif %} {% endfor %}
{% block content %}{% endblock %}