{% if offer.recurrenceException %}
{% for days in offer.getValidDays() %}
{{ days|date("d/m/Y") }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% elseif offer.startAt != offer.endAt %}
{% for days in offer.disponibilities %}
{{ days.date }}
{% endfor %}
{% if offer.disponibilities %}<br>{% endif %}
{% if offer.recurrence|length > 0 %}
Chaque {% for day in offer.recurrence %}{{ day }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
du {{ offer.startAt|date("d/m/Y") }} au {{ offer.endAt|date("d/m/Y") }}
{% else %}
{% for date in offer.disponibilities %}
{{ date.date }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}