{% set country = entries('location','countries').find(adv.country_id) ? entries('location','countries').find(adv.country_id).name : null %}
{% set city = entries('location', 'cities').find(adv.city) ? entries('location', 'cities').find(adv.city).name : null %}
{% if country %}
{{ country }}
{{ city ? ',' ~ city : '' }}
{% endif %}
{{ adv.title }}
{% if storeDetail is not null%}
{{ storeDetail.name }}
{% set phone = storeDetail.gsm_phone ?? storeDetail.land_phone %}
{% if phone %}
{{ phone }}
{% endif %}
{% else %}
{{ user.name }},
{% if user.gsm_phone is not null %}
{{ user.gsm_phone }}
{% endif %}
{% endif %}
{% if adv.thumbnail is not null %}
{{ img(adv.thumbnail).class('product-small-image h-auto w-100 float-right')|raw }}
{% else %}
{{ img('visiosoft.theme.restate::images/no-image.png').class('product-small-image w-100 float-right')|raw }}
{% endif %}