{% extends 'baseVisa.html.twig' %}
{% block title %}QEBOK{% endblock %}
{% block body %}
<div class="principal" style="margin-bottom:5rem;">
<a class="bouton btn" style="margin-bottom:1rem" href="{{ path('visa_nouveau_projet') }}">Créez un nouveau projet</a>
<div class="card">
<div class="card-header">
</div>
{% if listProjets %}
<div class="card-body">
<table class="table">
<thead>
<tr>
<th class="text-center">ID</th>
<th class="text-center">Nom du projet</th>
<th class="text-center">Ville</th>
<th class="text-center">Modifier les infos projet</th>
<th class="text-center">Voir le projet</th>
<th class="text-center">Valide jusqu'au</th>
</tr>
</thead>
<tbody>
{% for aFicheProjet in listProjets %}
<tr>
<th class="text-center">{{ aFicheProjet.id }}</th>
<td class="text-center">{{ aFicheProjet.nomDuProjet }}</td>
<td class="text-center">{{ aFicheProjet.villeDuProjet }}</td>
<td class="text-center">
{% if aFicheProjet.dateFinPaiement > date()%}
<a href="{{ path('modifProjet', {'code' : aFicheProjet.code}) }}">
<i class="fa fa-cog"></i>
</a>
{% else %}
<i class="fa fa-cog color:grey"></i>
{% endif %}
</td>
<td class="text-center">
<a href="{{ path('tri', {'code' : aFicheProjet.code}) }}">
<i class="fa fa-eye"></i>
</a>
</td>
{% if aFicheProjet.dateFinPaiement %}
{% if aFicheProjet.dateFinPaiement < date() %}
<td class="text-center">-</td>
{% else %}
<td class="text-center">{{ aFicheProjet.dateFinPaiement.format('d/m/Y') }}</td>
{% endif %}
{% else %}
<td class="text-center">Démo</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
{{ knp_pagination_render(listProjets) }}
</div>
{% endif %}
</div>
</div>
{#<a class="bouton btn" style="margin-bottom:1rem" href="{{ path('stripeCheckout') }}">Acheter un projet</a>
#}
<BR>
{% endblock %}