templates/profile/showPrestations.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Profil - Services{% 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.                 <h1><strong>Nos Services et Prestations:</strong></h1>
  15.                 {% for prestation in myPrestations %}
  16.                     <div class=""> 
  17.                         <h3>{{ prestation.name }}</h3>
  18.                         <p>{{ prestation.description }}</p>
  19.                     </div>
  20.                 {% endfor %}
  21.                 </div>
  22.             </div>
  23.             
  24.         </div>
  25.     </div>
  26. {% endblock %}