{% extends "base.html" %} {% from "_macros.html" import collapse_card_start, collapse_card_end %} {% block content %}
label | {% for workflow in workflows %}{{workflow.label}} | {% endfor %}Total |
---|---|---|
{{state.label}} | {%set count = [] %} {% for workflow in workflows %}{% if state.workflow.id == workflow.id %} {% if state.experiments|length %} {{state.experiments|length }} {% if count.append(state.experiments|length) %}{% endif %} {% endif %} {% else %} {% for rstate in repeated_states %} {% if rstate.label == state.label and rstate.workflow.id == workflow.id %} {% if rstate.experiments|length > 0 %} {{ rstate.experiments|length}} {% if count.append(rstate.experiments|length) %}{% endif %} {% endif %} {% endif %} {% endfor %} {% endif %} | {% endfor %}{{count|sum()}} |