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

Open in your IDE?
  1. {% apply spaceless %}
  2.     {% if area.status.identifier == 'AREA_FREE' %}
  3.         {% if area.customer.configuration.contributionAllow and area.customer.configuration.contributionActive %}
  4.             {% set pricePerMonth = area.price + area.customer.configuration.contributionPrice %}
  5.         {% else %}
  6.             {% set pricePerMonth = area.price %}
  7.         {% endif %}
  8.         {% set pricePerYear = pricePerMonth*12 %}
  9.         {{ area.name }} ({{ pricePerYear|number_format(2, ',', '.') }} {{ 'app.currency_sign'|trans }}/Jahr)
  10.     {% endif %}
  11.     {% if area.status.identifier == 'AREA_SOLD' %}
  12.         {% set sponsorName = area.sponsor.address.company is not empty
  13.             ? area.sponsor.address.company
  14.             : area.sponsor.person.firstname~' '~area.sponsor.person.lastname
  15.         %}
  16.         {{ sponsorName }}
  17.     {% endif %}
  18.     {% if area.status.identifier == 'AREA_BLOCKED' %}
  19.         Dieser Bereich ist gesperrt oder es ist keine Bande vorgesehen.
  20.     {% endif %}
  21.     {% if area.status.identifier == 'AREA_RESERVED' %}
  22.         Diese Bande ist bereits reserviert.
  23.     {% endif %}
  24. {% endapply %}