Best

{{ top_matches[0][0] if top_matches|length > 0 else '' }}

{% if top_matches|length > 0 %}

{{ top_matches[0][1].get('info_text0','') }}

{{ top_matches[0][1].get('info_text2','') }}

{% endif %}

Runner-up

{{ top_matches[1][0] if top_matches|length > 1 else '' }}

{% if top_matches|length > 1 %}

{{ top_matches[1][1].get('info_text0','') }}

{{ top_matches[1][1].get('info_text2','') }}

{% endif %}

Maybe...

{{ top_matches[2][0] if top_matches|length > 2 else '' }}

{% if top_matches|length > 2 %}

{{ top_matches[2][1].get('info_text0','') }}

{{ top_matches[2][1].get('info_text2','') }}

{% endif %}