{% if configAffichage is defined and configAffichage!= null and configAffichage.VOYAGE.BLOC_CARNET is defined and configAffichage.VOYAGE.BLOC_CARNET ==2 %} <div id="description2" class="property-description detail-block e"> <div class="detail-title description-vo-detail-title-edit"> {% if type ==8 %} <h2 class="title-left description-vo-title-left-edit"> {{ "Carnet de l'événement"|trans }} </h2> {% else %} <h2 class="title-left description-vo-title-left-edit"> {{ "Carnet de voyage"|trans }} </h2> {% endif %} </div> {% set index=1 %} <ul class="cbp_tmtimeline description-programme-edit"> {% for description in details.descriptionsNonLateral %} {% if description.type.libelle=="Programme" %} <li class="description-programme-list-edit"> <div class="cbp_tmicon"> {{ index }} </div> <div class="cbp_tmlabel"> {% if description.photo!=null %} <div class="hidden-xs"> <img src="{{ description.photo }}" alt="" class="img-circle thumb_visit"> </div> {% endif %} <h4 class="description-libelle-edit">{{ description.libelle }}</h4> <div> <p class="description-paragraphe-edit">{{ description.texte |raw }}</p> </div> </div> </li> {% set index=index+1 %} {% endif %} {% endfor %} </ul> </div>{% elseif configAffichage is defined and configAffichage!= null and configAffichage.VOYAGE.BLOC_CARNET is defined and configAffichage.VOYAGE.BLOC_CARNET ==3 %} <div id="description3" class="property-description detail-block"> <div class="detail-title description-vo-detail-title-edit"> {% if type ==8 %} <h2 class="title-left description-vo-title-left-edit"> {{ "Carnet de l'événement"|trans }} </h2> {% else %} <h2 class="title-left description-vo-title-left-edit"> {{ "Carnet de voyage"|trans }} </h2> {% endif %} </div> <div class="panel "> {% for description in details.descriptionsNonLateral %} {% if description.type.libelle=="Programme" %} <div class="card description-programme-edit"> <div class="panel-heading"> <div class="panel-title description-panel-title-edit"> <a data-toggle="collapse" data-parent="#" href="#{{ loop.index }} " {% if loop.first %} class="collapsed" {% endif %}> <div class="itinerary-header description-itinerary-header-edit"> <h4 class="description-itinerary-h4-edit">{{ description.libelle }}</h4> </div> </a> </div> </div> <div id="{{ loop.index }}" class="panel-collapse collapse {% if loop.first %} in {% endif %} "> <div class="panel-body card-body"> {% if description.photo!=null %} <div class="mr-4"><img src="{{ description.photo }}"></div> {% endif %} <p class="font-lg description-itinerary-paragraphe-edit"> {{ description.texte |raw }}</p> </div> </div> </div> {% endif %} {% endfor %} </div> </div>{% else %} {% if details.descriptionsNonLateral is defined and details.descriptionsNonLateral is not null and details.descriptionsNonLateral|length>0 %} <div id="description" class="property-description detail-block e"> <div class="detail-title description-vo-detail-title-edit"> {% if type ==8 %} <h2 class="title-left description-vo-title-left-edit"> {{ "Carnet de l'événement"|trans }} </h2> {% else %} <h2 class="title-left description-vo-title-left-edit"> {{ "Carnet de voyage"|trans }} </h2> {% endif %} </div> {% set index=1 %} <ul class="cbp_tmtimeline description-programme-edit"> {% for description in details.descriptionsNonLateral %} {% if description.type.libelle=="Programme" %} <li class="description-programme-list-edit"> <div class="cbp_tmicon"> {{ index }} </div> <div class="cbp_tmlabel"> {#{{ description.photo|split('.')|last }}#} {% if description.photo!=null %} <div class="hidden-xs"> <img src="{{ description.photo }}" alt="" class="img-circle thumb_visit"> </div> {% endif %} <h4 class="description-libelle-edit">{{ description.libelle }}</h4> <div> <p class="description-itinerary-paragraphe-edit">{{ description.texte |raw }}</p> </div> </div> </li> {% set index=index+1 %} {% endif %} {% endfor %} </ul> </div> {% endif %}{% endif %}{% if details.active and details.PERIODES is not null and (details.PERIODES|length>0 or type == 8) %} {% if (type !=6) or ( type ==6 and configAffichage is defined and configAffichage!= null and configAffichage.VOYAGE.ADD_FORM_ROOM_PAX_DETAILS_OMRA !='oui') %} <div id="tarifs" class="detail-block description-tarifs-edit"> {% if details.PERIODES|length > 0 %} <div class="detail-title"> <h2 class="title-left"> {% if type ==8 %} {{ (details.titreEvenSansHebergement ? details.titreEvenSansHebergement : "Événement Sans Hébergement")|trans }} {% else %} {{ "Tarifs"|trans }} {% endif %}</h2> </div> <div class="row"> {% if type_champ_periode == 'radio' %} {% if add_select_pack %} <div class="col-md-6 col-sm-12 col-xs-12 pull-right"> <div class="form-group"> <label class="control-label"> {{ "Pack"|trans }}</label> {% for periode in details.PERIODES %} {% for pack in periode.PACKS %} <div> <label class="packs-{{ periode.id }} packs" style="{% if not loop.parent.loop.first %}display:none;{% else %}hidden{% endif %}"> <input type="radio" name="packs" value="{{ pack.id }}" {% if loop.parent.loop.first and loop.first %}checked{% endif %}> {{ pack.libelle }} </label> </div> {% endfor %} {% endfor %} </div> </div> {% endif %} <div class="col-md-6 col-sm-12 col-xs-12 pull-right"> <div class="form-group"> <label class="control-label"> {{ "Prochains #{type==8?'date':'départs'}"|trans }}</label> {% for periode in details.PERIODES %} <div> <label> <input type="radio" name="sel1" value="{{ periode.id }}" {% if (periode.nombreInscription >= periode.maxInscription or periode.complet == true) and (type !=8 ) %} disabled {% endif %} {% if loop.first %}checked{% endif %}> {% if configAffichage.VOYAGE.TEXT_SELECT_PERIODES == "libelle" %} {{ periode.libelle }} {% elseif configAffichage.VOYAGE.TEXT_SELECT_PERIODES == "periode" %} {{ "du"|trans }} {{ periode.du|date("d/m/Y") }} {{ "au"|trans }} {{ periode.au|date("d/m/Y") }} {% elseif configAffichage.VOYAGE.TEXT_SELECT_PERIODES == "libelle-periode" %} {{ periode.libelle }} {{ "du"|trans }} {{ periode.du|date("d/m/Y") }} {{ "au"|trans }} {{ periode.au|date("d/m/Y") }} {% endif %} </label> </div> {% endfor %} </div> </div> {% endif %} {% if type_champ_periode == 'select' %} {% if add_select_pack %} <div class="col-md-6 col-sm-12 col-xs-12 pull-right"> <div class="form-group"> <label class="control-label"> {{ "Pack"|trans }}</label> <select class="form-control" id="packs" style=" width: 100%; "> {% for periode in details.PERIODES %} {% for pack in periode.PACKS %} <option class="packs-{{ periode.id }}" {% if not loop.parent.loop.first %}hidden{% endif %} value="{{ pack.id }}" {% if loop.parent.loop.first and loop.first %}selected{% endif %}>{{ pack.libelle }} {% if (periode.nombreInscription >= periode.maxInscription or periode.complet == true) and (type !=8 ) %} disabled {% endif %} </option> {% endfor %} {% endfor %} </select> </div> </div> {% endif %} <div class="col-md-6 col-sm-12 col-xs-12 pull-right"> <div class="form-group"> <label class="control-label"> {{ "Prochains #{type==8?'date':'départs'}"|trans }}</label> <select class="form-control" id="sel1" style=" width: 100%; "> {% for periode in details.PERIODES %} <option value="{{ periode.id }}" {% if loop.first %}selected{% endif %} {% if (periode.nombreInscription >= periode.maxInscription or periode.complet == true) and (type !=8 ) %} disabled {% endif %}> {% if configAffichage.VOYAGE.TEXT_SELECT_PERIODES == "libelle" %} {{ periode.libelle }} {{ periode.du|date("d/m/Y") }} {{ "au"|trans }} {{ periode.au|date("d/m/Y") }}{% if type != 8 %} ({{ periode.maxInscription - periode.nombreInscription }} Nbr places disponibles){% endif %} {% elseif configAffichage.VOYAGE.TEXT_SELECT_PERIODES == "periode" %} {{ "du"|trans }} {{ periode.du|date("d/m/Y") }} {{ "au"|trans }} {{ periode.au|date("d/m/Y") }}{% if type != 8 %} ({{ periode.maxInscription - periode.nombreInscription }} Nbr places disponibles){% endif %} {% elseif configAffichage.VOYAGE.TEXT_SELECT_PERIODES == "libelle-periode" %} {{ periode.libelle }} {{ "du"|trans }} {{ periode.du|date("d/m/Y") }} {{ "au"|trans }} {{ periode.au|date("d/m/Y") }} {% endif %} </option> {% endfor %} </select> </div> </div> {% endif %} <div class="col-md-12 col-sm-12 col-xs-12"> <div class="avn-price-table avn-style15 avn-col-4"> {% if details.PERIODES | length > 0 %} {% for periode in details.PERIODES %} {% if type == 8 %} {% if type_champ_periode == 'select' %} <div class="pack_item" id="p-{{ periode.id }}" style="{% if loop.first %}display:block;{% else %}display:none;{% endif %}"> {% for packs in periode.PACKS|array_chunk(2) %} {% if not loop.first %}<br>{% endif %} <div class="avn-price-table avn-style15 avn-col-4"> <!--items--> <div class="avn-items1"> {% set pack = periode.PACKS[0] %} <style> {% for order in ['single','double','triple','quadruple'] %} ul#tarifs-pack-{{ pack.id }} li.{{ order }} { order: {{ attribute( pack.orderChambres, order) }} } {% endfor %} </style> <ul class="tarifs-pack" id="tarifs-pack-{{ pack.id }}"> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front single"> <span> {{ pack.tarifs.single.name }} </span> </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front double"> <span> {{ pack.tarifs.double.name }} </span> </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front triple"> <span> {{ pack.tarifs.triple.name }} </span> </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front quadruple"> <span> {{ pack.tarifs.quadruple.name }} </span> </li> {% endif %} {% if details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents"|trans }}</span> </li> {% endif %} {% if details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> </li> {% endif %} {% if details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "en chambre séparée"|trans }} </span> </li> {% endif %} {% if details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "en chambre séparée"|trans }}</span> </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> </li> {% endif %} </ul> </div> <!--/items--> {% if add_select_pack %} <div class="avn-tables"> {% for pack in packs %} <div id="periode{{ periode.id }}-pack{{ pack.id }}" {% if not (loop.parent.loop.first and loop.first ) %}hidden{% endif %} class="avn-table periode-pack"> <!--table header--> <div class="header"> <!--package--> <h4 class="package" title="{{ pack.libelle }}">{{ pack.libelle }} </h4> <!--/package--> </div> <!--/table header--> <!--table items--> <div class="avn-items2"> <style> {% for order in ['single','double','triple','quadruple'] %} ul#tarifs-pack-{{ pack.id }} li.{{ order }} { order: {{ attribute( pack.orderChambres, order) }} } {% endfor %} </style> <ul class="tarifs-pack" id="tarifs-pack-{{ pack.id }}"> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front single"> <span> {{ pack.tarifs.single.name }}</span> {% if pack.tarifs.single.vente > 0.000 %} {{ pack.tarifs.single.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {# <i class="fa fa-close avn-icon-red"></i>#} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front double"> <span> {{ pack.tarifs.double.name }} </span> {% if pack.tarifs.double.vente > 0.000 %} {{ pack.tarifs.double.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front triple"> <span> {{ pack.tarifs.triple.name }} </span> {% if pack.tarifs.triple.vente > 0.000 %} {{ pack.tarifs.triple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front quadruple"> <span> {{ pack.tarifs.quadruple.name }} </span> {% if pack.tarifs.quadruple.vente > 0.000 %} {{ pack.tarifs.quadruple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> {% if pack.tarifs.enfant1.parent > 0.000 %} {{ pack.tarifs.enfant1.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> {% if pack.tarifs.enfant2.parent > 0.000 %} {{ pack.tarifs.enfant2.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant1.separer > 0.000 %} {{ pack.tarifs.enfant1.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant2.separer > 0.000 %} {{ pack.tarifs.enfant2.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> {% if pack.tarifs.bebe > 0.000 %} {{ pack.tarifs.bebe|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} </ul> </div> <!--/table items--> <div class="avn-btn-main"> <!--table button--> <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn"> <i class="ion-ios-cart"></i> {{ "Réserver"|trans }} </a> <!--/table button--> </div> </div> {% endfor %} </div> {% else %} <div class="avn-tables"> {% for pack in packs %} <!--table--> <div class="avn-table"> <!--table header--> <div class="header"> <!--package--> <h4 class="package" title="{{ pack.libelle }}">{{ pack.libelle }} </h4> <!--/package--> </div> <!--/table header--> <!--table items--> <div class="avn-items2"> <style> {% for order in ['single','double','triple','quadruple'] %} ul#tarifs-pack-{{ pack.id }} li.{{ order }} { order: {{ attribute( pack.orderChambres, order) }} } {% endfor %} </style> <ul class="tarifs-pack" id="tarifs-pack-{{ pack.id }}"> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front single"> <span> {{ pack.tarifs.single.name }}</span> {% if pack.tarifs.single.vente > 0.000 %} {{ pack.tarifs.single.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {# <i class="fa fa-close avn-icon-red"></i>#} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front double"> <span> {{ pack.tarifs.double.name }} </span> {% if pack.tarifs.double.vente > 0.000 %} {{ pack.tarifs.double.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front triple"> <span> {{ pack.tarifs.triple.name }} </span> {% if pack.tarifs.triple.vente > 0.000 %} {{ pack.tarifs.triple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front quadruple"> <span> {{ pack.tarifs.quadruple.name }} </span> {% if pack.tarifs.quadruple.vente > 0.000 %} {{ pack.tarifs.quadruple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> {% if pack.tarifs.enfant1.parent > 0.000 %} {{ pack.tarifs.enfant1.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> {% if pack.tarifs.enfant2.parent > 0.000 %} {{ pack.tarifs.enfant2.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant1.separer > 0.000 %} {{ pack.tarifs.enfant1.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant2.separer > 0.000 %} {{ pack.tarifs.enfant2.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> {% if pack.tarifs.bebe > 0.000 %} {{ pack.tarifs.bebe|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} </ul> </div> <!--/table items--> <div class="avn-btn-main"> <!--table button--> {% if (periode.nombreInscription >= periode.maxInscription or periode.complet == true) and (type !=8 ) %} {% else %} {% if pack.complet is defined and pack.complet == true %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn disabled"> <i class="ion-ios-cart"></i> {{ "Complet"|trans }} </a> {% else %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn"> <i class="ion-ios-cart"></i> {{ "Réserver"|trans }} </a> {% endif %} {% endif %} <!--/table button--> </div> </div> <!--/table--> {% endfor %} </div> {% endif %} </div> {% endfor %} </div> {% else %} <div class="pack_item" id="p-{{ periode.id }}" style="{% if loop.first %}display:block;{% else %}display:none;{% endif %}"> <div class="avn-price-table avn-style15 avn-col-4"> {#{% set pack = periode.PACKS[0] %}#} {% for pack in periode.PACKS %} {# {{ dump(pack) }}#} <div id="periode{{ periode.id }}-pack{{ pack.id }}" style="{% if not (loop.parent.loop.first and loop.first ) %}display:none;hidden{% endif %}" class="avn-table periode-pack"> <!--table header--> <!--table items--> <div class="avn-price-table avn-style15 avn-col-4"> <div class="avn-items1"> <ul> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front"> <span> {{ pack.tarifs.single.name }}</span> </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front "> <span> {{ pack.tarifs.double.name }} </span> </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front "> <span> {{ pack.tarifs.triple.name }} </span> </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front "> <span> {{ pack.tarifs.quadruple.name }} </span> </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> </li> {% endif %} </ul> </div> <!--/table items--> </div> </div> {% endfor %} <!--/items--> {% if add_select_pack %} <div class="avn-tables"> {% for pack in periode.PACKS %} <div id="periode{{ periode.id }}-pack{{ pack.id }}" style="{% if not (loop.parent.loop.first and loop.first ) %}display:none;hidden{% endif %}" class="avn-table periode-pack"> <!--table header--> <div class="header"> <!--package--> <h4 class="package" title="{{ pack.libelle }}">{{ pack.libelle }} </h4> <!--/package--> </div> <!--/table header--> <!--table items--> <div class="avn-items2"> <ul> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front"> <span> {{ pack.tarifs.single.name }}</span> {% if pack.tarifs.single.vente > 0.000 %} {{ pack.tarifs.single.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front "> <span> {{ pack.tarifs.double.name }} </span> {% if pack.tarifs.double.vente > 0.000 %} {{ pack.tarifs.double.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front "> <span> {{ pack.tarifs.triple.name }} </span> {% if pack.tarifs.triple.vente > 0.000 %} {{ pack.tarifs.triple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front "> <span> {{ pack.tarifs.quadruple.name }} </span> {% if pack.tarifs.quadruple.vente > 0.000 %} {{ pack.tarifs.quadruple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> {% if pack.tarifs.enfant1.parent > 0.000 %} {{ pack.tarifs.enfant1.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> {% if pack.tarifs.enfant2.parent > 0.000 %} {{ pack.tarifs.enfant2.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant1.separer > 0.000 %} {{ pack.tarifs.enfant1.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant2.separer > 0.000 %} {{ pack.tarifs.enfant2.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> {% if pack.tarifs.bebe > 0.000 %} {{ pack.tarifs.bebe|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} </ul> </div> <!--/table items--> <div class="avn-btn-main"> <!--table button--> {% if (periode.nombreInscription >= periode.maxInscription or periode.complet == true) and (type !=8 ) %} {% else %} {% if pack.complet is defined and pack.complet == true %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn disabled"> <i class="ion-ios-cart"></i> {{ "Complet"|trans }} </a> {% else %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn"> <i class="ion-ios-cart"></i> {{ "Réserver"|trans }} </a> {% endif %} {% endif %} <!--/table button--> </div> </div> {% endfor %} </div> {% else %} <div class="avn-tables"> {% for pack in periode.PACKS %} <!--table--> <div class="avn-table"> <!--table header--> <div class="header"> <!--package--> <h4 class="package" title="{{ pack.libelle }}">{{ pack.libelle }} </h4> <!--/package--> </div> <!--/table header--> <!--table items--> <div class="avn-items2"> <ul class="tarifs-pack" id="tarifs-pack-{{ pack.id }}"> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front single"> <span> {{ pack.tarifs.single.name }}</span> {% if pack.tarifs.single.vente > 0.000 %} {{ pack.tarifs.single.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front double"> <span> {{ pack.tarifs.double.name }} </span> {% if pack.tarifs.double.vente > 0.000 %} {{ pack.tarifs.double.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front triple"> <span> {{ pack.tarifs.triple.name }} </span> {% if pack.tarifs.triple.vente > 0.000 %} {{ pack.tarifs.triple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front quadruple"> <span> {{ pack.tarifs.quadruple.name }} </span> {% if pack.tarifs.quadruple.vente > 0.000 %} {{ pack.tarifs.quadruple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> {% if pack.tarifs.enfant1.parent > 0.000 %} {{ pack.tarifs.enfant1.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> {% if pack.tarifs.enfant2.parent > 0.000 %} {{ pack.tarifs.enfant2.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant1.separer > 0.000 %} {{ pack.tarifs.enfant1.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant2.separer > 0.000 %} {{ pack.tarifs.enfant2.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> {% if pack.tarifs.bebe > 0.000 %} {{ pack.tarifs.bebe|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} </ul> </div> <!--/table items--> <div class="avn-btn-main"> <!--table button--> {% if (periode.nombreInscription >= periode.maxInscription or periode.complet == true) and (type !=8 ) %} {% else %} {% if pack.complet is defined and pack.complet == true %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn disabled"> <i class="ion-ios-cart"></i> {{ "Complet"|trans }} </a> {% else %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn"> <i class="ion-ios-cart"></i> {{ "Réserver"|trans }} </a> {% endif %} {% endif %} <!--/table button--> </div> </div> <!--/table--> {% endfor %} </div> {% endif %} </div> </div> {% endif %} {% elseif type_champ_periode == 'select' %} <div class="pack_item" id="p-{{ periode.id }}" style="{% if loop.first %}display:block;{% else %}display:none;{% endif %}"> {% for packs in periode.PACKS|array_chunk(1) %} {% if not loop.first %}<br>{% endif %} <div class="avn-price-table avn-style15 avn-col-4"> <!--items--> <div class="avn-items1"> {% set pack = periode.PACKS[0] %} <style> {% for order in ['single','double','triple','quadruple'] %} ul#tarifs-pack-{{ pack.id }} li.{{ order }} { order: {{ attribute( pack.orderChambres, order) }} } {% endfor %} </style> <ul class="tarifs-pack" id="tarifs-pack-{{ pack.id }}"> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front single"> <span> {{ pack.tarifs.single.name }} </span> </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front double"> <span> {{ pack.tarifs.double.name }} </span> </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front triple"> <span> {{ pack.tarifs.triple.name }} </span> </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front quadruple"> <span> {{ pack.tarifs.quadruple.name }} </span> </li> {% endif %} {% if details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents"|trans }}</span> </li> {% endif %} {% if details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> </li> {% endif %} {% if details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "en chambre séparée"|trans }} </span> </li> {% endif %} {% if details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "en chambre séparée"|trans }}</span> </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> </li> {% endif %} </ul> </div> <!--/items--> {% if add_select_pack %} <div class="avn-tables"> {% for pack in packs %} <div id="periode{{ periode.id }}-pack{{ pack.id }}" {% if not (loop.parent.loop.first and loop.first ) %}hidden{% endif %} class="avn-table periode-pack"> <!--table header--> <div class="header"> <!--package--> <h4 class="package" title="{{ pack.libelle }}">{{ pack.libelle }} </h4> <!--/package--> </div> <!--/table header--> <!--table items--> <div class="avn-items2"> <style> {% for order in ['single','double','triple','quadruple'] %} ul#tarifs-pack-{{ pack.id }} li.{{ order }} { order: {{ attribute( pack.orderChambres, order) }} } {% endfor %} </style> <ul class="tarifs-pack" id="tarifs-pack-{{ pack.id }}"> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front single"> <span> {{ pack.tarifs.single.name }}</span> {% if pack.tarifs.single.vente > 0.000 %} {{ pack.tarifs.single.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {# <i class="fa fa-close avn-icon-red"></i>#} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front double"> <span> {{ pack.tarifs.double.name }} </span> {% if pack.tarifs.double.vente > 0.000 %} {{ pack.tarifs.double.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front triple"> <span> {{ pack.tarifs.triple.name }} </span> {% if pack.tarifs.triple.vente > 0.000 %} {{ pack.tarifs.triple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front quadruple"> <span> {{ pack.tarifs.quadruple.name }} </span> {% if pack.tarifs.quadruple.vente > 0.000 %} {{ pack.tarifs.quadruple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> {% if pack.tarifs.enfant1.parent > 0.000 %} {{ pack.tarifs.enfant1.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> {% if pack.tarifs.enfant2.parent > 0.000 %} {{ pack.tarifs.enfant2.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant1.separer > 0.000 %} {{ pack.tarifs.enfant1.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant2.separer > 0.000 %} {{ pack.tarifs.enfant2.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> {% if pack.tarifs.bebe > 0.000 %} {{ pack.tarifs.bebe|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} </ul> </div> <!--/table items--> <div class="avn-btn-main"> <!--table button--> <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn"> <i class="ion-ios-cart"></i> {{ "Réserver"|trans }} </a> <!--/table button--> </div> </div> {% endfor %} </div> {% else %} <div class="avn-tables"> {% for pack in packs %} <!--table--> <div class="avn-table"> <!--table header--> <div class="header"> <!--package--> <h4 class="package" title="{{ pack.libelle }}">{{ pack.libelle }} </h4> <!--/package--> </div> <!--/table header--> <!--table items--> <div class="avn-items2"> <style> {% for order in ['single','double','triple','quadruple'] %} ul#tarifs-pack-{{ pack.id }} li.{{ order }} { order: {{ attribute( pack.orderChambres, order) }} } {% endfor %} </style> <ul class="tarifs-pack" id="tarifs-pack-{{ pack.id }}"> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front single"> <span> {{ pack.tarifs.single.name }}</span> {% if pack.tarifs.single.vente > 0.000 %} {{ pack.tarifs.single.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {# <i class="fa fa-close avn-icon-red"></i>#} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front double"> <span> {{ pack.tarifs.double.name }} </span> {% if pack.tarifs.double.vente > 0.000 %} {{ pack.tarifs.double.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front triple"> <span> {{ pack.tarifs.triple.name }} </span> {% if pack.tarifs.triple.vente > 0.000 %} {{ pack.tarifs.triple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front quadruple"> <span> {{ pack.tarifs.quadruple.name }} </span> {% if pack.tarifs.quadruple.vente > 0.000 %} {{ pack.tarifs.quadruple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> {% if pack.tarifs.enfant1.parent > 0.000 %} {{ pack.tarifs.enfant1.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> {% if pack.tarifs.enfant2.parent > 0.000 %} {{ pack.tarifs.enfant2.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant1.separer > 0.000 %} {{ pack.tarifs.enfant1.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant2.separer > 0.000 %} {{ pack.tarifs.enfant2.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> {% if pack.tarifs.bebe > 0.000 %} {{ pack.tarifs.bebe|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} </ul> </div> <!--/table items--> <div class="avn-btn-main"> <!--table button--> {% if (periode.nombreInscription >= periode.maxInscription or periode.complet == true) and (type !=8 ) %} {% else %} {% if pack.complet is defined and pack.complet == true %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn disabled"> <i class="ion-ios-cart"></i> {{ "Complet"|trans }} </a> {% else %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn"> <i class="ion-ios-cart"></i> {{ "Réserver"|trans }} </a> {% endif %} {% endif %} <!--/table button--> </div> </div> <!--/table--> {% endfor %} </div> {% endif %} </div> {% endfor %} </div> {% else %} <div class="pack_item" id="p-{{ periode.id }}" style="{% if loop.first %}display:block;{% else %}display:none;{% endif %}"> <div class="avn-price-table avn-style15 avn-col-4"> {#{% set pack = periode.PACKS[0] %}#} {% for pack in periode.PACKS %} {# {{ dump(pack) }}#} <div id="periode{{ periode.id }}-pack{{ pack.id }}" style="{% if not (loop.parent.loop.first and loop.first ) %}display:none;hidden{% endif %}" class="avn-table periode-pack"> <!--table header--> <!--table items--> <div class="avn-price-table avn-style15 avn-col-4"> <div class="avn-items1"> <ul> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front"> <span> {{ pack.tarifs.single.name }}</span> </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front "> <span> {{ pack.tarifs.double.name }} </span> </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front "> <span> {{ pack.tarifs.triple.name }} </span> </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front "> <span> {{ pack.tarifs.quadruple.name }} </span> </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> </li> {% endif %} </ul> </div> <!--/table items--> </div> </div> {% endfor %} <!--/items--> {% if add_select_pack %} <div class="avn-tables"> {% for pack in periode.PACKS %} <div id="periode{{ periode.id }}-pack{{ pack.id }}" style="{% if not (loop.parent.loop.first and loop.first ) %}display:none;hidden{% endif %}" class="avn-table periode-pack"> <!--table header--> <div class="header"> <!--package--> <h4 class="package" title="{{ pack.libelle }}">{{ pack.libelle }} </h4> <!--/package--> </div> <!--/table header--> <!--table items--> <div class="avn-items2"> <ul> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front"> <span> {{ pack.tarifs.single.name }}</span> {% if pack.tarifs.single.vente > 0.000 %} {{ pack.tarifs.single.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front "> <span> {{ pack.tarifs.double.name }} </span> {% if pack.tarifs.double.vente > 0.000 %} {{ pack.tarifs.double.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front "> <span> {{ pack.tarifs.triple.name }} </span> {% if pack.tarifs.triple.vente > 0.000 %} {{ pack.tarifs.triple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front "> <span> {{ pack.tarifs.quadruple.name }} </span> {% if pack.tarifs.quadruple.vente > 0.000 %} {{ pack.tarifs.quadruple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> {% if pack.tarifs.enfant1.parent > 0.000 %} {{ pack.tarifs.enfant1.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> {% if pack.tarifs.enfant2.parent > 0.000 %} {{ pack.tarifs.enfant2.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant1.separer > 0.000 %} {{ pack.tarifs.enfant1.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant2.separer > 0.000 %} {{ pack.tarifs.enfant2.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> {% if pack.tarifs.bebe > 0.000 %} {{ pack.tarifs.bebe|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} </ul> </div> <!--/table items--> <div class="avn-btn-main"> <!--table button--> {% if (periode.nombreInscription >= periode.maxInscription or periode.complet == true) and (type !=8 ) %} {% else %} {% if pack.complet is defined and pack.complet == true %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn disabled"> <i class="ion-ios-cart"></i> {{ "Complet"|trans }} </a> {% else %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn"> <i class="ion-ios-cart"></i> {{ "Réserver"|trans }} </a> {% endif %} {% endif %} <!--/table button--> </div> </div> {% endfor %} </div> {% else %} <div class="avn-tables"> {% for pack in periode.PACKS %} <!--table--> <div class="avn-table"> <!--table header--> <div class="header"> <!--package--> <h4 class="package" title="{{ pack.libelle }}">{{ pack.libelle }} </h4> <!--/package--> </div> <!--/table header--> <!--table items--> <div class="avn-items2"> <ul class="tarifs-pack" id="tarifs-pack-{{ pack.id }}"> {% if pack.tarifs.single is defined and pack.tarifs.single is not null %} <li class="font-front single"> <span> {{ pack.tarifs.single.name }}</span> {% if pack.tarifs.single.vente > 0.000 %} {{ pack.tarifs.single.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.double is defined and pack.tarifs.double is not null %} <li class="font-front double"> <span> {{ pack.tarifs.double.name }} </span> {% if pack.tarifs.double.vente > 0.000 %} {{ pack.tarifs.double.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.triple is defined and pack.tarifs.triple is not null %} <li class="font-front triple"> <span> {{ pack.tarifs.triple.name }} </span> {% if pack.tarifs.triple.vente > 0.000 %} {{ pack.tarifs.triple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.quadruple is defined and pack.tarifs.quadruple is not null %} <li class="font-front quadruple"> <span> {{ pack.tarifs.quadruple.name }} </span> {% if pack.tarifs.quadruple.vente > 0.000 %} {{ pack.tarifs.quadruple.vente|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span> {{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre des parents" |trans }}</span> {% if pack.tarifs.enfant1.parent > 0.000 %} {{ pack.tarifs.enfant1.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre des parents"|trans }}</span> {% if pack.tarifs.enfant2.parent > 0.000 %} {{ pack.tarifs.enfant2.parent|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant1 is defined and pack.tarifs.enfant1 is not null and details.agesEnfant.minAge1 is not null and details.agesEnfant.maxAge1 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge1 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge1 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant1.separer > 0.000 %} {{ pack.tarifs.enfant1.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.enfant2 is defined and pack.tarifs.enfant2 is not null and details.agesEnfant.minAge2 is not null and details.agesEnfant.maxAge2 is not null %} <li class="font-front"> <span>{{ "Enfant entre"|trans }} {{ details.agesEnfant.minAge2 }} {{ "et"|trans }} {{ details.agesEnfant.maxAge2 }} {{ "dans la chambre séparée"|trans }}</span> {% if pack.tarifs.enfant2.separer > 0.000 %} {{ pack.tarifs.enfant2.separer|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} {% if pack.tarifs.bebe is defined and pack.tarifs.bebe is not null %} <li class="font-front"> <span> {{ "Tarif bébé"|trans }}</span> {% if pack.tarifs.bebe > 0.000 %} {{ pack.tarifs.bebe|devise }} <sup>{{ deviseSelected().symbole }} </sup> {% else %} {{ "sur demande"|trans }} {% endif %} </li> {% endif %} </ul> </div> <!--/table items--> <div class="avn-btn-main"> <!--table button--> {% if (periode.nombreInscription >= periode.maxInscription or periode.complet == true) and (type !=8 ) %} {% else %} {% if pack.complet is defined and pack.complet == true %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn disabled"> <i class="ion-ios-cart"></i> {{ "Complet"|trans }} </a> {% else %} <a href='{{ path('reservation',{'slug':details.slug,'pack':pack.id,'periode':periode.id}) }}' class="avn-btn"> <i class="ion-ios-cart"></i> {{ "Réserver"|trans }} </a> {% endif %} {% endif %} <!--/table button--> </div> </div> <!--/table--> {% endfor %} </div> {% endif %} </div> </div> {% endif %} {% endfor %} {% endif %} </div> </div> </div> {% endif %} {% if details.hotelsHebergement|length>0 %} {% set produit = "SHT" %} {% if not configAffichage is defined %} {% set configAffichage = getConfigAffichage() %} {% endif %} <div id="evenement"> <h2> {{ (details.titreEvenAvecHebergement ? details.titreEvenAvecHebergement : "Événement Avec Hébergement")|trans }} </h2> {% for hebergement in details.hotelsHebergement %} {% for hotel in hebergement.hotels %} <hr> <div class="row"> <div class="title-event"> Hébergement dans <span class="text-bold font-color">{{ hotel.libelle }}</span> </div> {% for periode in hebergement.periodes %} <div class="event-periode d-flex justify-content-between align-items-center mb-3"> <h2>{{ periode.libelle }}</h2> <a class="btn btn-list btn-event heberger" data-title="{{ hotel.libelle }}" data-hotel="{{ hotel.id }}" data-checkin="{{ periode.checkin }}" data-nuitees="{{ periode.nuitees }}" data-toggle="modal" data-target="#occupations{{ produit }}"> RÉSERVER</a> </div> {% endfor %} </div> <!-- End col-md-9 --> {% endfor %} {% endfor %} </div> {% endif %} </div> {% endif %}{% else %} <div class="detail-block description-tarifs-edit"> <div id="sticky-text-vo-tarifs"> <div class="description-vo-tarifs"> <h4 class="text-vo-tarifs"> Ce produit n'est plus disponible, cliquez ici pour découvrir nos offres actuelles </h4> <button onclick="window.location=$('ul#breadcrumbtrail li.home a').attr('href')" class="btn btn-primary btn-vo-tarifs"> Voir autres offres </button> </div> </div> </div>{% endif %}{##}<div class="modal fade" id="occupations{{ produit }}" tabindex="-1" role="dialog"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <h3></h3> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-close"></i> </button> </div> <div class="modal-body" id="vjs-advanced-search-{{ produit|lower }}"> <template v-for="(room,index) in rooms"> <h5 class="room-modal"> {{ "Chambre"|trans }} ${index + 1} <i v-if="rooms.length>1" title="{{ "Supprimer chambre"|trans }}" @click="removeRoom(index)" class="fa fa-trash"></i></h5> <div class="row"> <div class="col-sm-3"> <div class="form-group"> <label class="label-rooms"> {{ "Adultes"|trans }}</label> <select class="selectpicker" v-model="room.Adult" ref="select" data-live-search="false"> <option v-if="index == 0" v-for="item in {{ configAffichage.HOTEL.MAX_ADULTE }}"> ${item} </option> <option v-if="index > 0" v-for="item in ({{ configAffichage.HOTEL.MAX_ADULTE }}+1)"> ${item-1} </option> </select> </div> </div> <div class="col-sm-3"> <div class="form-group"> <label class="label-rooms"> {{ "Enfants"|trans }}</label> <select class="selectpicker" v-model="room.children" @change="editChildren(index)" ref="select" data-live-search="false"> <option v-for="item in ({{ configAffichage.HOTEL.MAX_ENFANT }}+1)">${item-1} </option> </select> </div> </div> <div class="col-sm-6"> <div v-for="(item , index) in room.Child" class="col-sm-3"> <div class="form-group"> <label> {{ "Age"|trans }} ${index+1}</label> <select class="selectpicker" ref="select" data-live-search="false" v-model="room.Child[index]"> <option v-for="age in {{ configAffichage.HOTEL.MAX_AGE_ENFANT }}" v-if="age >= {{ configAffichage.HOTEL.MIN_AGE_ENFANT }}">${age} </option> </select> </div> </div> </div> </div> <hr style=" margin-top: 0px;margin-bottom: 15px; "> </template> <div class="row"> <div class="col-sm-6"> <button class="btn btn-primary add-room-filtrev2 btn-block bnt-joli mobile-btn-liste-filtre btn-col-liste" @click="addRoom">+ {{ "Ajouter une chambre"|trans }} </button> </div> <div class="col-sm-6"> <button id="demande-hebergement" {#data-dismiss="modal"#} class="btn btn-primary btn-block bnt-joli btn-pink-list" {#@click="Recap"#} href="#event-room" data-toggle="collapse" data-target="#event-room"> {{ "Demander"|trans }} </button> </div> </div> </div> <div id="event-room" class="collapse dropdown-select-open" aria-hidden="true"> <div id="result" class="padding-event-recap"> <div class="capitulatif" style="min-height: 40px;"> <div class="ligne_detaif"> <div class="bloc_date"> <i aria-hidden="true" class="fa fa-calendar fa-1 mr-2"></i>Arrivée : <span style="font-size:12px" id="recap-checkin"></span> </div> <div class="bloc_date"> <i aria-hidden="true" class="fa fa-moon-o fa-1" style="margin-left: 1px;"></i>Durée : <span style="font-size:12px" id="recap-nuitees"></span> </div> <div class="bloc_date"> <i aria-hidden="true" class="fa input-users fa-1 mr-2"></i></i>occupations : <span style="font-size:12px" id="recap-occupations"></span> </div> <div style="float: right"> <button id="edit-search" class="btn btn-secondary " type="button"> Modifier </button> </div> </div> </div> </div> <div class="padding-event"> {% include checkCustomTemplate('SejourHotel/availability/list-hotels.html.twig') %} </div> </div> </div> </div></div><script> $(window).scroll(function () { var scroll = $(window).scrollTop(); if (scroll >= 600) { $("#sticky-text-vo-tarifs").addClass("stickyvotarifs"); } else { $("#sticky-text-vo-tarifs").removeClass("stickyvotarifs"); } });</script>