templates/index.html.twig line 1

Open in your IDE?
  1. {% extends 'baseVisa.html.twig' %}
  2. {% block title %}QEBOK{% endblock %}
  3. {% block body %}
  4. <div class="principal" style="margin-bottom:5rem;">
  5.     <a class="bouton btn" style="margin-bottom:1rem" href="{{ path('visa_nouveau_projet') }}">Créez un nouveau projet</a>
  6. <div class="card">
  7.         <div class="card-header">
  8.         </div>
  9.     {% if  listProjets %}
  10.         <div class="card-body">
  11.             <table class="table">
  12.     <thead>
  13.     <tr>
  14.         <th class="text-center">ID</th>
  15.         <th class="text-center">Nom du projet</th>
  16.         <th class="text-center">Ville</th>
  17.         <th class="text-center">Modifier les infos projet</th>
  18.         <th class="text-center">Voir le projet</th>
  19.         <th class="text-center">Valide jusqu'au</th>
  20.     </tr>
  21.     </thead>
  22.     <tbody>
  23.     
  24.    
  25.     {% for aFicheProjet in listProjets %}
  26.         <tr>
  27.             <th class="text-center">{{ aFicheProjet.id }}</th>
  28.             <td class="text-center">{{ aFicheProjet.nomDuProjet }}</td>
  29.             <td class="text-center">{{ aFicheProjet.villeDuProjet }}</td>
  30.             <td class="text-center">
  31.             {% if  aFicheProjet.dateFinPaiement > date()%}
  32.                 <a href="{{ path('modifProjet', {'code' : aFicheProjet.code}) }}">
  33.                     <i class="fa fa-cog"></i>
  34.                 </a>
  35.             {% else %}
  36.                 <i class="fa fa-cog color:grey"></i>
  37.             {% endif %}
  38.               
  39.                 
  40.             </td>
  41.             <td class="text-center">
  42.                 <a href="{{ path('tri', {'code' : aFicheProjet.code}) }}">
  43.                     <i class="fa fa-eye"></i>
  44.                 </a>
  45.             </td>
  46.             {% if  aFicheProjet.dateFinPaiement %}
  47.                 {% if  aFicheProjet.dateFinPaiement < date() %}
  48.                     <td class="text-center">-</td>
  49.                 {% else %}
  50.                     <td class="text-center">{{ aFicheProjet.dateFinPaiement.format('d/m/Y') }}</td>
  51.                 {% endif %}
  52.             {% else %}
  53.                 <td class="text-center">Démo</td>
  54.             {% endif %}
  55.         </tr>
  56.     {% endfor %}
  57.            
  58.     </tbody>
  59. </table>
  60.             
  61.             {{ knp_pagination_render(listProjets) }}
  62.         </div>
  63.             {% endif %} 
  64. </div>
  65. </div>
  66. {#<a class="bouton btn" style="margin-bottom:1rem" href="{{ path('stripeCheckout') }}">Acheter un projet</a>
  67. #}            
  68. <BR>
  69.             
  70. {% endblock %}