{% extends 'administrative/layout.html.twig' %} {% block title %}Bewerbungen pro Destination{% endblock %} {% block content %}

Bewerbungen pro Destination

{{ form_start(form, { attr: { class: 'flex flex-wrap items-end gap-4' } }) }}
{{ form_row(form.dateFrom) }}
{{ form_row(form.dateTo) }}
{{ form_widget(form.apply, { attr: { class: 'btn btn--small' } }) }} {{ form_widget(form.reset, { attr: { class: 'btn btn--small btn--secondary' } }) }}
{{ form_end(form) }}

Zeitraum: {{ filterDto.effectiveDateFrom|date('d.m.Y') }} – {{ filterDto.effectiveDateTo|date('d.m.Y') }} {% if filterDto.usingDefaultRange %}(Standard: letzte 12 Monate){% else %}(Filter aktiv){% endif %}

{% if statistics is empty %}
Keine Daten im ausgewählten Zeitraum vorhanden.
{% else %}
{% for stat in statistics %} {% endfor %} {% set totalAll = 0 %} {% for stat in statistics %} {% set totalAll = totalAll + stat.total %} {% endfor %}
Destination Bewerbungen
{{ stat.hotelCode }} {{ stat.total }}
Gesamt {{ totalAll }}
{% endif %} {% endblock %}