templates/frontend/index/customer-package/area.html.twig line 1

Open in your IDE?
  1. {% if horizontal == true %}
  2.     {% set cssClass = 'customerAdvertisingArea__horizontal' %}
  3.     {% set cssProp = 'width' %}
  4. {% else %}
  5.     {% set cssClass = 'customerAdvertisingArea__vertical' %}
  6.     {% set cssProp = 'height' %}
  7. {% endif %}
  8. <div id="customer-advertising-area-{{ area.uuid }}" data-area-id="{{ area.id }}"
  9.     class="{{ cssClass }} clickable_area {% include 'frontend/index/customer-package/area_status_class.html.twig' with {
  10.         'area': area
  11.     } %}"
  12.     style="{{ cssProp }}: {{ width }}%;"
  13.     data-uuid-area="{{ area.uuid }}"
  14.     data-bs-toggle="tooltip"
  15.     data-bs-placement="top"
  16.     title="{% include 'frontend/index/customer-package/area_tooltip.html.twig' with {'area': area} %}"
  17. >
  18. </div>