{% set visible = [] %}
{% for pc in postcards %}
{% if pc.image_front %}
{% if visible.append(pc) %}{% endif %}
{% endif %}
{% endfor %}
{% if visible|length > 0 or has_more %}
{% for pc in visible %}
{% if pc.country_from and pc.country %}{{ pc.country_from|flag }}→{{ pc.country|flag }}
{% elif pc.country %}{{ pc.country|flag }}
{% endif %}