Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
{% set debt_free_sales_price = content.field_debt_free_sales_price.0 %}
{% set apartment_number = content.field_apartment_number.0 %}
{% set maintenance_fee = content.field_maintenance_fee.0 %}
{% set financing_fee = content.field_financing_fee.0 %}
{% set right_of_occupancy_fee = content.field_right_of_occupancy_fee.0 %}

<article{{attributes.addClass(classes)}}>
Expand Down Expand Up @@ -324,6 +325,7 @@
and (apartment_structure|render == '')
and (right_of_occupancy_fee|render == '0.00€')
and (maintenance_fee|render == '0.00€ / kk')
and (financing_fee|render == '0.00€ / kk')
and (energy_class|render == null)
and (accessibility|render == null)
and (site_owner|render == null)
Expand Down Expand Up @@ -458,6 +460,14 @@
</p>
</li>
{% endif %}
{% if ownership_type|lower == 'hitas' and financing_fee|render and financing_fee|render != '0.00€ / kk' %}
<li class="apartment__details-item">
<p>
<span>{% trans %}Financing fee{% endtrans %}</span>
<span>{{ financing_fee }}</span>
</p>
</li>
{% endif %}
{% if energy_class|render %}
<li class="apartment__details-item">
<p>
Expand Down
Loading