templates/pages/modal/realty/_layout-modal.html.twig line 1

Open in your IDE?
  1. {% extends 'pages/modal/realty/_layout-modal-base.html.twig' %}
  2. {% block content %}
  3.     {% set class = 'layout-modal' %}
  4.     {% set layout = layout|default(null) %}
  5.     {% set title = layout.name|default('') %}
  6.     {% set subtitle = 'Срок сдачи ' ~ get_ready_date(layout)|default('') %}
  7.     {% set id = layout.id|default('') %}
  8.     {% set annotation = layout.building.annotation %}
  9.     {{ parent() }}
  10. {% endblock %}
  11. {% block layout_modal_left %}
  12.     {% set squarePrice = get_layout_square_price(layout) %}
  13.     {% include '_parts/realty/_layout-price-block.html.twig' with {
  14.         class: 'layout-modal__price-block layout-price-block_layout',
  15.         priceFrom: true,
  16.         price: layout.price,
  17.         squarePrice: squarePrice,
  18.         modalLink: 'request:trade_in_layout_modal',
  19.         modalId: layout.id,
  20.     } %}
  21.     {% set features = get_layout_features(layout) %}
  22.     {% include '_parts/realty/_layout-info-list.html.twig' with {
  23.         class: 'layout-modal__features',
  24.         features: features
  25.     } %}
  26.     {% set apartments = layout.apartments.toArray() %}
  27.     {% if apartments|length %}
  28.         {% include '_parts/realty/_layout-apartments.html.twig' with {
  29.             class: 'layout-modal__apartments',
  30.             apartments: apartments
  31.         } %}
  32.     {% endif %}
  33.     {% set isTimiryasev2 = get_building_name_by_layout(layout) %}
  34.     {% include '_parts/realty/_common-price-info.html.twig' with {
  35.         class: 'layout-modal__price-info',
  36.         isTimiryasev2: isTimiryasev2,
  37.         annotation: annotation
  38.     } %}
  39. {% endblock %}
  40. {% block layout_modal_right %}
  41.     {% set imageObject = layout %}
  42.     {% if layout.floorGroopPlaces|length %}
  43.         {% set floorGroupPlace = layout.floorGroopPlaces.toArray[0] %}
  44.     {% endif %}
  45.     {{ parent() }}
  46. {% endblock %}
  47. {% block layout_modal_form %}
  48.     {% set actionPath = 'request:layout_recall' %}
  49.     {{ parent() }}
  50. {% endblock %}
  51. {% block print_section %}
  52.     {% set printTemplate = '_parts/realty/print/_layout-realty-print.html.twig' %}
  53.     {{ parent() }}
  54. {% endblock %}