src/Aqarmap/Bundle/ListingBundle/Resources/views/Listing/listingSellerInfo.html.twig line 1

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