{% extends 'base.html.twig' %}
{% block title %}Projet{% endblock %}
{% block content %}
<h1>{{ projet.nom }}</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ projet.id }}</td>
</tr>
<tr>
<th>Nom</th>
<td>{{ projet.nom }}</td>
</tr>
<tr>
<th>Description</th>
<td>{{ projet.description }}</td>
</tr>
<tr>
<th>Datedebut</th>
<td>{{ projet.datedebut ? projet.datedebut|date('Y-m-d') : '' }}</td>
</tr>
<tr>
<th>Datefin</th>
<td>{{ projet.datefin ? projet.datefin|date('Y-m-d') : '' }}</td>
</tr>
<tr>
<th>Entreprise</th>
<td>{{ projet.entreprise }}</td>
</tr>
</tbody>
</table>
{% endblock %}