templates/profile/showHebergements.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Profil{% endblock %}
  3. {% block body %}
  4.     {% block block_navstart %} {% include "_partials/_nav.html.twig" %} {% endblock %}
  5.     
  6.     <div class="container">
  7.         <div class="row">
  8.             <div class="col-12 border border-light my-0">
  9.                 {% for userP in userProfil %}
  10.                     {% include "_partials/_profilenav.html.twig" %}
  11.                 {% endfor %}
  12.             </div>
  13.             <div class="col-12 border border-light my-0">
  14.                 <div class="row">
  15.                 {% for hebergement in myHebergements %}
  16.                     <div class="col-lg-5">
  17.                         <h3>Hebergement: <strong>{{ hebergement.name }}</strong></h3>
  18.                         <img src="{{ asset('uploads/images/' ~ hebergement.imageFileName) }}" 
  19.                                     alt="{{ hebergement.name }}" class="img-fluid" style="width: 400px; height: 400px;" />
  20.                         <p>
  21.                             {{ hebergement.city }} - {{ hebergement.country }},
  22.                             <span>
  23.                                 {# <a href="{{ path('app_hebergements_details', {slug: hebergement.slug, id: hebergement.id}) }}" class="btn btn-primary btn-sm">Voir les détails</a>  #}
  24.                                 {% set i = 0 %}
  25.                                 {% for statElem in allStatistiques %}
  26.                                     {% if hebergement.id == statElem.idElement and statElem.page == 'DETAIL_HEBERGEMENT' %}
  27.                                         {% set i = i + 1 %}
  28.                                     {% endif %}
  29.                                 {% endfor %}  
  30.                                 {% include '_partials/_compteur_vues.html.twig' %}      {## COMPTEUR_VUES ##}
  31.                             </span>
  32.                         </p>
  33.                         <p>{{ hebergement.description }}</p>
  34.                     </div>
  35.                     <div class="col-lg-7">
  36.                         <h2><strong>Autres détails</strong></h2>
  37.                         {% if hebergement.imageFileOthers is not null %}
  38.                             {% for image in hebergement.imageFileOthers %}
  39.                                 <img src="{{ asset('uploads/images/' ~ image) }}" 
  40.                                         alt="Photo-indisp" class="img-fluid" style="width: 300px; height: 300px;" />
  41.                             {% endfor %}
  42.                         {% endif %}
  43.                     </div>
  44.                     <hr></hr>
  45.                 {% endfor %}
  46.                 </div>
  47.             </div>
  48.         </div>
  49.     </div>
  50. {% endblock %}