templates/Slivki/admin/offers/geo_location_item.html.twig line 1

Open in your IDE?
  1. {% for geoLocation in geoLocations %}
  2.     <tr data-id="{{ geoLocation.getID() }}">
  3.         <td class="city">{{ geoLocation.getCity() }}</td>
  4.         <td class="street">{{ geoLocation.getStreet() }}</td>
  5.         <td class="house">{{ geoLocation.getHouse() }}</td>
  6.         <td>
  7.             <a class="edit-offer-address-edit" href="javascript:void(0)" title="Редактировать">
  8.                 <i class="fa fa-edit text-yellow"></i>
  9.             </a>
  10.         </td>
  11.         <td>
  12.             <a class="edit-offer-address-remove" href="javascript:void(0)" title="Удалить">
  13.                 <i class="fa fa-remove text-red"></i>
  14.             </a>
  15.         </td>
  16.     </tr>
  17. {% endfor %}