{% if build_views %}
{% set inventory = build_inventory | default(none) %} {% if inventory and inventory.rows %}
Build inventory load {% if overview_doc_build_breakdown %} Guide {% endif %}
{% with context={'builds': inventory} %} {% include 'cxx_profiles_overview_builds.html' %} {% endwith %}
{% endif %}
{% for build in build_views %} {% set build_index = loop.index %}
{{ build.variant_label }}{% if build.variant_display_tail %}/{{ build.variant_display_tail }}{% endif %} — {{ build.toolchain }}
{% with rules=build.rules, id_prefix='build-' ~ build_index ~ '-rule', single_build_view=true %} {% include 'cxx_profiles_partial_rules.html' %} {% endwith %}
{% with files=build.files, id_prefix='build-' ~ build_index ~ '-file', single_build_view=true %} {% include 'cxx_profiles_partial_files.html' %} {% endwith %}
{% endfor %}
{% endif %}