{% if compoundField %}
{% set arrowDriection = app.request.get('_locale') == 'ar' ? 'left': 'right' %}
<div class="listing-details-item listing-info-container ">
<div class="page-header d-flex justify-content-between mb-0">
<p class="section-title__header">{{ 'listing.developer'|trans }}</p>
<a class="text-blue font-weight-bold pt-2"
href="{{ path('aqarmap_user_listings', {'id': listing.user.id}) }}">
{{ 'labels.compound.show_properties'|trans }}
<i class="fa fa-chevron-{{arrowDriection}} mx-2 pt-1"></i>
</a>
</div>
{% include '@AqarmapListingBundle/Listing/compoundDeveloperData.html.twig' with {'compound': compoundField} %}
</div>
{% elseif showSellerInfo %}
<div>
{% include '@AqarmapListingBundle/Listing/sellerInfoSectionBox.html.twig' %}
</div>
{% endif %}