You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

55 lines
2.4 KiB

{% load i18n %}
{% load thumbnail %}
{% comment %}
{% endcomment %}
<div class="h-booking">
<header class="clearfix">
<div class="sect-title">
<a target="_blank" href="http://www.booking.com/searchresults.html?aid={{ book_aid }}&city={{ city.id }}">{% trans 'Отели рядом с выставкой от' %} <b>Booking</b>.com</a>
</div>
<a class="more blue2" target="_blank" href="http://www.booking.com/searchresults.html?aid={{ book_aid }}&city={{ city.id }}">{% trans 'Все отели поблизости' %}</a>
</header>
<ul>
{% if place %}
{% for hotel in place.get_nearest_hotels %}
<li>
<div class="hb-item">
<a href="{{ hotel.url }}?aid={{ book_aid }}" target="_blank">
<span class="hb-pict">
{% thumbnail hotel.photo "150x150" crop="center" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% endthumbnail %}
</span>
<span class="hb-link">{{ hotel.name }}</span>
</a>
<!--<div class="hb-price">6 500 руб./ночь</div>-->
<a class="button blue2 lc icon-bell" href="{{ hotel.url }}?aid={{ book_aid }}" target="_blank">Забронировать</a>
</div>
</li>
{% endfor %}
{% else %}
{% for hotel in city.get_hotels %}
<li>
<div class="hb-item">
<a href="{{ hotel.url }}?aid={{ book_aid }}" target="_blank">
<span class="hb-pict">
{% thumbnail hotel.photo "150x150" crop="center" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% endthumbnail %}
</span>
{{ hotel.name }}
</a>
<div class="hb-price">&nbsp;</div>
<!--<div class="hb-price">6 500 руб./ночь</div>-->
<a class="button blue2 lc icon-bell" href="{{ hotel.url }}?aid={{ book_aid }}" target="_blank">Забронировать</a>
</div>
</li>
{% endfor %}
{% endif %}
</ul>
</div>