{% for path, stat in stats.items() %}
{{path}}
s
e
min
max
avg
{% for labels, st in stat.items() %}
{{labels[0]}}
{{labels[1]}}
{{(st['min'] / 1000000000.0)|round(5)}} sec
{{(st['max'] / 1000000000.0)|round(5)}} sec
{{(st['avg'] / 1000000000.0)|round(5)}} sec
{% endfor %}
{% endfor %}