templates/main/piegerelev.html.twig line 1
{% extends 'basepublic.html.twig' %}
{% block title %}les relevée par pieges {% endblock %}
{% block body %}
<div class="container center py-3 mb-4" >
<div class="card mb-15" style="max-width: 900px;">
<p>nombre de lieu : {{nbrlieu}}</p>
<p> 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 class="col-12">
<img class="img-thumbnail" style="width:500px" src="{{path('graph_facconte', {pdf: "non",idfac: 0,idproduit: id})}} " />
</div>
</div>
</div>
{% endblock %}