Dynflow Top 5 (by execution time)
{% for r in dynflow_exectime %} {% endfor %}
Exectime {{ dynflow_count_label|default('Steps') }} Name
{{ "{:0,.0f}".format(r[1][0] if r[1] is iterable and r[1] is not string else r[0]) }} {{ "{:0,.0f}".format(r[1][1] if r[1] is iterable and r[1] is not string else r[1]) }} {{ r[0] if r[1] is iterable and r[1] is not string else r[2] }}
{% if pulp_exectime|length > 0 %}
Pulp Top 5 (by execution time)
{% for r in pulp_exectime %} {% endfor %}
Exectime {{ pulp_count_label|default('Actions') }} Name
{{ "{:0,.0f}".format(r[1][0]) }} {{ "{:0,.0f}".format(r[1][1]) }} {{ r[0] }}
{% endif %}