{% extends 'base.html.twig' %}
{% block title %}Analyse{% endblock %}
{% block body %}
{{ controller_name }}
{# {{ dump(limites) }} #}
Number Animal
{% for element in analyse[0]|keys %}
{% if element not in ['id', 'number_animal'] %}
{{ element }}
{% endif %}
{% endfor %}
Actions
{# Ajout de la colonne Actions #}
{% for item in analyse %}
{% if item != 'No data' %}
{{ item.number_animal }}
{% for element, value in item %}
{% if element not in ['id', 'number_animal'] %}
{% set limits = limites[element] ?? null %}
{% if limits is not null %}
{% set low = limits.low|default(0) %}
{% set high = limits.high|default(0) %}
{% if value >= low and value <= high %}