{% for geoLocation in geoLocations %}
<tr data-id="{{ geoLocation.getID() }}">
<td class="city">{{ geoLocation.getCity() }}</td>
<td class="street">{{ geoLocation.getStreet() }}</td>
<td class="house">{{ geoLocation.getHouse() }}</td>
<td>
<a class="edit-offer-address-edit" href="javascript:void(0)" title="Редактировать">
<i class="fa fa-edit text-yellow"></i>
</a>
</td>
<td>
<a class="edit-offer-address-remove" href="javascript:void(0)" title="Удалить">
<i class="fa fa-remove text-red"></i>
</a>
</td>
</tr>
{% endfor %}