{% macro li(libelle, value) %} {% if value is not null %}
  • {{ libelle }} : {{ value|raw }}
  • {% endif %} {% endmacro %} {% macro liDoubleInfos(libelle1, value1,libelle2, value2,separatorLibelle,separatorValue) %} {% if value1 is not null and value2 is not null %}
  • {{ libelle1 }} {{ separatorLibelle }} {{ libelle2 }} : {{ value1|raw }} {{ separatorValue }} {{ value2|raw }}
  • {% elseif value1 is not null %}
  • {{ libelle1 }} : {{ value1|raw }}
  • {% elseif value2 is not null %}
  • {{ libelle2 }} : {{ value2|raw }}
  • {% endif %} {% endmacro %} {% macro serviceIsDone(libelle, value) %} {% if value is not null %}
  • {{ libelle }} : {% if value==true %} calcul effectuĂ© et conforme {% elseif value==false %} calcul effectuĂ© {% endif %}
  • {% endif %} {% endmacro %}