templates/_parts/realty/_layout-info-list.html.twig line 1

Open in your IDE?
  1. {% set class = class|default('') %}
  2. {% set features = features|default([]) %}
  3. <ul class="layout-info-list {{ class }}">
  4.     {% for key, value in features %}
  5.         {% if value %}
  6.            <li class="layout-info-list__item text__body">
  7.                <div class="layout-info-list__key">
  8.                    {{ key }}
  9.                </div>
  10.                {% set newValue = value %}
  11.                
  12.                {% if newValue == 'без отделки' or newValue == 'Без отделки' %}
  13.                    {% set newValue = "Под отделку" %}
  14.                {% endif %}
  15.                {% if newValue == 'потребкооперации' %}
  16.                    {% set newValue = "Слобода Курочкины" %}
  17.                {% endif %}
  18.                {% if newValue == 'Тимирязев 2' %}
  19.                    {% set newValue = "Зональный институт" %}
  20.                {% endif %}
  21.                
  22.                <div class="layout-info-list__value text__black-text">
  23.                    {{ newValue }}
  24.                </div>
  25.            </li>
  26.         {% endif %}
  27.     {% endfor %}
  28. </ul>