{% extends "base.html" %} {% from "_macros.html" import collapse_card_start, collapse_card_end %} {% block content %}

State Overview

{{ collapse_card_start("States", show=True, data_count=states|length)}} {% for workflow in workflows %} {% endfor %} {% for state in states %} {% for workflow in workflows %} {% endfor %} {% endfor %}
id lable {{workflow.label}}Total
{{state.id}} {{state.label}} {% if state.workflow_id == workflow.id%} {% if state.experiments|length > 0 %} {{state.experiments|length}} {% endif %} {% endif %} {% if state.experiments|length > 0 %} {{state.experiments|length}} {% endif %}
{{ collapse_card_end("States") }} {% endblock %}