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.
23 lines
1.5 KiB
23 lines
1.5 KiB
{% load i18n %}
|
|
|
|
<div class="cli-services">
|
|
<a class="button icon-sm" href="#">{% trans 'услуги' %}</a>
|
|
<div class="cli-services-sm">
|
|
<ul>
|
|
{% if not obj.paid %}
|
|
{% 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 %}
|
|
{% else %}
|
|
<li><a target="_blank" href="{{ obj.paid.oficial_link.get_object_url }}">{% trans 'Официальный сайт' %}</a></li>
|
|
<li><a target="_blank" href="{{ obj.paid.tickets_link.get_object_url }}">{% trans 'Билеты на выставку' %}</a></li>
|
|
<li><a target="_blank" href="{{ obj.paid.participation_link.get_object_url }}">{% trans 'Заявка на участие' %}</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div> |