{% if profile.city %}
{% if profile.country and user.is_authenticated() and profile.is_vouched %}
{{ profile.city.name }}
{%- else -%}
{{ profile.city.name }}
{%- endif -%},
{% endif %}
{% if profile.region %}
{% if profile.country and user.is_authenticated() and profile.is_vouched %}
{{ profile.region.name }}
{%- else -%}
{{ profile.region.name }}
{%- endif -%},
{% endif %}
{% if profile.country %}
{% if user.is_authenticated() and profile.is_vouched %}
{{ profile.country.name }}
{%- else -%}
{{ profile.country.name }}
{%- endif -%}
{% endif %}