Berkarar/themes/berkarar/partials/home/rentals_and_sales/rentals.htm

41 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

==
<!-- <div class="shops_block tabItem" id="rentals"> -->
{% for sale in rentals %}
<a href="{{ url('/') }}/rental_or_sale/{{sale.id}}" class="shops_item">
<div class="shops_item-photo">
<img src="{{sale.images.first.path}}" alt="shop-photo">
</div>
<h6 class="shops_item-label">
{{'Аренда'|_}}
</h6>
<div class="shops_item-info">
<h5 class="shops_item-name">
{% if sale.center_type == 'business' %}
{{'Бизнес центр'|_}}
{% elseif sale.center_type == 'trade' %}
{{'Торговый центр'|_}}
{% else %}
{{'Не выбран'|_}}
{% endif %}
</h5>
<h5 class="shops_item-floor">
{{sale.floor}}
<span>
{{'ЭТАЖ'|_}}
</span>
</h5>
</div>
<div class="shops_item-content">
<h4 class="shops_item-content-txt">
{{sale.name}}
</h4>
</div>
</a>
{% endfor %}
<!-- </div> -->