templates/main/villerelev.html.twig line 1
{% extends 'basepublic.html.twig' %}
{% block title %}les relevée par code postale {% endblock %}
{% block body %}
<div class="container center py-3 mb-4" >
<div class="card mb-15" style="max-width: 900px;">
<h1>les relevée du code postale : {{code}}</h1>
<p>nombre de lieu : {{nbrlieu}}</p>
<p>tout piege confundu et tout actratif confondu sur 2 ans </p>
<table class="table table-striped">
<tbody>
<thead>
<tr>
<td></td>
<td>Frelon asitique</td>
<td>Frelon europeen</td>
<td>Mouche</td>
<td>Papillon</td>
<td>Divers</td>
</tr>
</thead>
{% for item in inter.tabeau %}
<tr>
<td>{{item.libelle}}</td>
<td>{{item.asia}}</td>
<td>{{item.euro}}</td>
<td>{{item.mouche}}</td>
<td>{{item.papillon}}</td>
<td>{{item.divers}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}