templates/front/hunt/_offer-dates.html.twig line 1

Open in your IDE?
  1. {% if offer.recurrenceException %}
  2.     {% for days in offer.getValidDays() %}
  3.         {{ days|date("d/m/Y") }}{% if not loop.last %}, {% endif %}
  4.     {% endfor %}
  5. {% elseif offer.startAt != offer.endAt %}
  6.     {% for days in offer.disponibilities %}
  7.         {{ days.date }}
  8.     {% endfor %}
  9.     {% if offer.disponibilities %}<br>{% endif %}
  10.     {% if offer.recurrence|length > 0 %}
  11.         Chaque {% for day in offer.recurrence %}{{ day }}{% if not loop.last %}, {% endif %}{% endfor %}
  12.     {% endif %}
  13.     du {{ offer.startAt|date("d/m/Y") }} au {{ offer.endAt|date("d/m/Y") }}
  14. {% else %}
  15.     {% for date in offer.disponibilities %}
  16.         {{ date.date }}{% if not loop.last %}, {% endif %}
  17.     {% endfor %}
  18. {% endif %}