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

Open in your IDE?
  1. {% set listingId = listingId is defined ? listingId : ''  %}
  2. <div class="listing-phone" ng-controller="sellerPhoneController" ng-cloak>
  3.     <div ng-repeat="(index, phone) in getSellerPhones({{listingId}})"
  4.         class="listing-phone__list  d-flex justify-content-between">
  5.         <div class="col-auto p-0">
  6.             <p class="listing-phone__title">
  7.                 {{'listing.seller_phone'|trans}}
  8.             </p>
  9.             <div class="listing-phone__number">
  10.                     <span ng-bind="getDecodedNumber(phone.number)"></span>
  11.             </div>
  12.         </div>    
  13.         <a href="javascript:void(0)"
  14.             class="listing-phone__details d-md-none"
  15.             ng-click="showRatingForm($event, phone.number, '{{listingId}}')">
  16.             <div class="listing-phone__icon " alt="listingNumber">
  17.                <img
  18.                     src="/images/BrandsIcons/ic_phone.svg"
  19.                     class="mx-2"
  20.                 /> 
  21.             </div>
  22.         </a>
  23.     </div>
  24. </div>