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.
17 lines
988 B
17 lines
988 B
{% load i18n %}
|
|
|
|
<div class="cli-services">
|
|
<a class="button icon-sm" href="#">{% trans 'услуги' %}</a>
|
|
<div class="cli-services-sm">
|
|
<ul>
|
|
{% with services=obj.get_services %}
|
|
{% for service in services %}
|
|
<li><a href="{{ obj.get_permanent_url }}service/{{ service.url }}/">{{ service.name }}</a></li>
|
|
{% endfor %}
|
|
{% endwith %}
|
|
{% if obj.country_id in sng_countries %}
|
|
<li><a href="http://www.booking.com/searchresults.html?aid={{ book_aid }}&city={{ obj.city.id }}&do_availability_check=on&label=expo_search&lang={{ request.LANGUAGE_CODE }}&checkin_monthday={{ obj.data_begin|date:'j' }}&checkin_year_month={{ obj.data_begin|date:'Y' }}-{{ obj.data_begin|date:'n' }}&checkout_monthday={{ obj.data_end|date:'j' }}&checkout_year_month={{ obj.data_end|date:'Y' }}-{{ obj.data_end|date:'n' }}">{% trans 'Заказать отель' %}</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div> |