Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
716cf56cb2.url-de-test.ws
/
htdocs
/
templates
/
Front
/
Booking
/
//srv/data/web/vhosts/716cf56cb2.url-de-test.ws/htdocs/templates/Front/Booking/search.html.twig
{% extends "Front/layout.html.twig" %} {% block title %}Réservation {% endblock %} {% block content %} <div class="container my-5"> <div class="row"> <div class="col-sm-12"> <h1>Choisissez vos dates</h1> {{ form_start(form) }} <div class="row d-flex align-items-end"> <div class="col-sm-3"> {{ form_row(form.start) }} </div> <div class="col-sm-3"> {{ form_row(form.end) }} </div> <div class="col-sm-2"> {{ form_row(form.nbPersonnes) }} </div> <div class="col-sm-2"> {{ form_row(form.nbEnfants) }} </div> <div class="col-sm-2 d-flex justify-content-start align-items-end mb-3"> <button type="submit" class="btn button-basic">Rechercher</button> </div> </div> {{ form_end(form) }} </div> </div> {% if logements is defined %} {% if logements|length > 0 %} <div class="d-flex align-items-center"> <img src="/assets/img/info.svg" alt="alert"> <b>Pour les logements équipés d'un canapé lit, il peut-être utilisé par 1 adulte ou 2 enfants de -12ans</b> </div> {% for logement in logements %} {% include "Front/Block/_logement-card.html.twig" %} {% endfor %} {% elseif newDates != false %} <h3>Malheureusement il n'y a aucun logement de disponible pour ces critères</h3> <br> <h3>Vous pouvez essayez entre ces dates <b>{{ newDates.start|date('d-m-Y') }}</b> et <b>{{ newDates.end|date('d-m-Y') }}</b> des logements sont disponibles</h3> {% else %} <h3>Malheureusement il n'y a aucun logement de disponible pour ces critères</h3> {% endif %} {% endif %} <p class="mt-5">*Période haute Juillet/Août</p> </div> {% endblock %}