{% if status or all == 1 %}
tous : {{ nb_all }}
{% else %}
tous : {{ nb_all }}
{% endif %}
{% if nb_failed > 0 or all == 1 %}—
{% if not status or status != "failed" %}
échoués : {{ nb_failed }}
{% else %}
échoués : {{ nb_failed }}
{% endif %}
{% endif %}
{% if nb_canceled > 0 or all == 1 %}—
{% if not status or status != "canceled" %}
annulés : {{ nb_canceled }}
{% else %}
annulés : {{ nb_canceled }}
{% endif %}
{% endif %}
{% if nb_running > 0 or all == 1 %}—
{% if not status or status != "running" %}
en cours : {{ nb_running }}
{% else %}
en cours : {{ nb_running }}
{% endif %}
{% endif %}