<div class="tour-list__container list__container">
<div class="tour-list__view swiper-container tour-slider">
<div class="tour-list__list swiper-wrapper">
{% for hotel in hotels %}
<a class="tour-list__item swiper-slide" href="/hotel/{{ hotel.id }}-{{ hotel.hrefName }}" title="{{ hotel.name }}">
<span class="tour-list__item-photo" style="background-image: url('{{ hotel.image }}');">
{% if hotel.rating != 0 %}
<span class="tour-list__rating-list" >
<span class="rating-list__container">
<span class="rating-list__bar-wrapper" data-rat-value="{{ hotel.rating|round(2, 'common')|number_format(1, '.') }}">
<span class="rating-list__progressbar">
<span class="rating-list__bar" data-value="{{ hotel.rating }}"></span>
</span>
{{ hotel.rating|round(2, 'common')|number_format(1, '.') }}
</span>
</span>
</span>
{% endif %}
</span>
<span class="tour-list__item-info">
<span class="tour-list__item-hotel-name">
<span class="tour-list__hotel-stars">
{% if hotel.stars == 'five' %}
5
{% elseif hotel.stars == 'four' %}
4
{% elseif hotel.stars == 'three' %}
3
{% elseif hotel.stars == 'two' %}
2
{% elseif hotel.stars == 'one' %}
1
{% endif %}
<i class="icon icon-star"></i>
</span>
<span class="tour-list__hotel-name" title="{{ hotel.name }}">
<span>{{ hotel.name }}</span>
</span>
</span>
<span class="tour-list__item-location" title="{{ hotel.countryName }}, {{ hotel.cityName }}"><i class="icon icon-16px i16-location-4"></i>{{ hotel.countryName }}, {{ hotel.cityName }}</span>
</span>
</a>
{% endfor %}
</div>
</div>
<div class="swiper-button swiper-button-prev"></div>
<div class="swiper-button swiper-button-next"></div>
<div class="spoiler__container">
<div class="spoiler__button not-toggable show-more-tours-button">
<span>
<i class="icon icon-darr-blue"></i>
{{ 'Больше'|trans }}
</span>
</div>
</div>
</div>