templates/main/villerelev.html.twig line 1

  1. {% extends 'basepublic.html.twig' %}
  2. {% block title %}les relevée par code postale {% endblock %}
  3. {% block body %}
  4. <div class="container  center  py-3  mb-4" >
  5.      <div class="card mb-15" style="max-width: 900px;">
  6. <h1>les relevée du code postale : {{code}}</h1>
  7. <p>nombre de lieu : {{nbrlieu}}</p>
  8. <p>tout piege confundu et tout actratif confondu sur 2 ans </p>
  9. <table class="table table-striped">
  10.    <tbody>
  11.       <thead>
  12.          <tr>
  13.             <td></td>
  14.             <td>Frelon asitique</td>
  15.             <td>Frelon europeen</td>
  16.             <td>Mouche</td>
  17.             <td>Papillon</td>
  18.             <td>Divers</td>
  19.          </tr>
  20.       </thead>
  21.       {% for item in inter.tabeau %}
  22.          <tr>
  23.             <td>{{item.libelle}}</td>
  24.             <td>{{item.asia}}</td>
  25.             <td>{{item.euro}}</td>
  26.             <td>{{item.mouche}}</td>
  27.             <td>{{item.papillon}}</td>
  28.             <td>{{item.divers}}</td>
  29.          </tr>
  30.       {% endfor %}
  31.    </tbody>
  32. </table>  
  33.    </div>
  34. </div>
  35. {% endblock %}