templates/projets/allProjets.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Réalisations{% endblock %}
  3. {% block body %}
  4. <br><br>
  5. <h1 class="text-center">Réalisations</h1>
  6. <br>
  7. <p class="soustitre">Ci-dessous, mes différents projets que j'ai réaliser :</p>
  8. <section class="container">
  9.   <div class="row">
  10.               {% for Projets in Projets %}
  11.           <div class="card col-md-2 m-3" style="width: 18rem">
  12.             <img
  13.               class="my-3"
  14.               style="width: 150; height: 15rem"
  15.               src="{{asset('uploads/image/' ~ Projets.image)}}"
  16.               alt="Logo du langage"
  17.             />
  18.             <div class="card-body"style="font-family: 'Yanone Kaffeesatz', sans-serif">
  19.               <h5 class="card-title text-center text-black">{{ Projets.titre }}</h5>
  20.                <div class="text-center">
  21.                 <a
  22.                   href="{{ path('app_single_projets', { id: Projets.id }) }}"
  23.                   class="btn btn-danger my-3"
  24.                   target="_blank"
  25.                   >Voir le projet</a
  26.                 >
  27.                             </div>
  28.               
  29.               {% if is_granted ("ROLE_ADMIN") %}
  30.               <div class="d-flex p-3 justify-content-between">
  31.                 <a 
  32.                   class="btn btn-danger" 
  33.                   href="{{ path('app_admin_delete_projets',{id: Projets.id}) }}" 
  34.                   onclick="return confirm('Êtes-vous sûr de vouloir supprimer ce projet ?')"
  35.                   >Supprimer</a
  36.                 >
  37.                 <a
  38.                   href="{{ path('app_admin_edit_projets', { id: Projets.id }) }}"
  39.                   class="btn btn-warning"
  40.                   >Modifier</a
  41.                 >
  42.               </div>
  43.               {% endif %}
  44.             </div>
  45.           </div>
  46.           {% endfor %}
  47.  </div>
  48. </section>
  49. {% endblock %}