{% if not IS_PROJECT %}
{% set attrPropertyType = app.request.attributes.get('propertyType') %}
{% set attrPropertyTypeId = propertyType ? propertyType.id : null %}
{% set listingPropertyType = listing is defined ? listing.propertyType : null %}
{% set listingPropertyTypeId = listingPropertyType ? listingPropertyType.id : 'null' %}
{% set attrSection = app.request.attributes.get('section') %}
{% set attrSectionId = section ? section.id : null %}
{% set listingSection = listing is defined ? listing.section : null %}
{% set listingSectionId = listingSection ? listingSection.id : 'null' %}
{% set paramLocation = app.request.query.get('location')%}
{% set paramLocationId = paramLocation ? paramLocation : null %}
{% set attrLocation = app.request.attributes.get('location')%}
{% set attrLocationId = attrLocation ? attrLocation.id : null %}
{% set listingLocation = listing is defined ? listing.location : null %}
{% set listingLocationId = listingLocation ? listingLocation.id : 'null' %}
{% set locationId = attrLocationId ? attrLocationId: (paramLocationId ? paramLocationId : listingLocationId) %}
{% set propertyTypeId = attrPropertyTypeId ? attrPropertyTypeId : listingPropertyType %}
{% set sectionId = attrSectionId ? attrSectionId : listingSectionId %}
{% set isCompaniesDataParamsDefined = true %}
<div class="top-sellers-warp-cards top-sellers-logos horizontal-top-sellers-container">
{% include "@AqarmapListingBundle/Listing/topSellersLogosCard.html.twig" with {trigger: 'gtm-action-topsellers-lead-logos-card', eventAction:'Top Sellers Logos Card' , leadSourcePage: 'listing_details'} %}
</div>
{% endif %}