Your Matches:

{% set match_labels = ["Best", "Runner-up", "Maybe..."] %} {% if top_matches|length > 0 %} {% set name, match_values = top_matches[0] %}

{{ match_labels[0] }}

{{ name }}

{{ match_values.info_text1 }}

{{ match_values.info_text2 }}

{% endif %}
{% for idx in range(1, top_matches|length) %} {% set name, match_values = top_matches[idx] %}

{{ match_labels[idx] if idx < match_labels|length else 'Match' }}

{{ name }}

{{ match_values.info_text1 }}

{{ match_values.info_text2 }}

{% endfor %}