{% extends "layout.html" %} {% block body %} {{ super() }}

Dashboard

Deploy, analyze and monitor scenarios

{% if scenario_running %} {% if scenario_completed %}

There is a scenario completed

The federation has reached the maximum number of rounds

{% else %}

There is a scenario running

The federation is currently running

{% endif %} {% if scenarios_list_length > 1 %}

Scenarios queue {{ scenarios_finished }}/{{ scenarios_list_length }}

{% if scenarios_finished != scenarios_list_length %} Stop scenario queue {% endif %}
{% endif %}
Scenario name: {{ scenario_running[0] }}
Scenario title: {{ scenario_running[3] }}
Scenario description: {{ scenario_running[4] }}
Scenario start time: {{ scenario_running[1] }}
Deploy new scenario {% if scenarios %} Compare scenarios {% endif %}
{% else %}

There are no deployed scenarios

Deploy a scenario {% if scenarios %} Compare scenarios {% endif %}
{% if scenarios_list_length is defined and scenarios_list_length > 1 %}

Scenarios queue {{ scenarios_finished }}/{{ scenarios_list_length }}

{% if scenarios_finished != scenarios_list_length %} Stop scenario queue {% endif %}
{% endif %} {% endif %}
{% if scenarios %}

Scenarios in the database

{% for name, start_time, end_time, title, description, status, network_subnet, model, dataset, rounds, role in scenarios %} {% if status == "running" %} {% elif status == "completed" %} {% else %} {% endif %} {% endfor %}
Name Start time Model Dataset Rounds Status Action
{{ name }} {{ start_time }} {{ model }} {{ dataset }} {{ rounds }}RunningCompletedFinished Monitor Real-time metrics {% if status == "running" %} Stop scenario {% elif status == "completed" %} Stop scenario Stop scenario queue {% else %} {% endif %}
{% endif %} {% if not user_logged_in %} {% endif %} {% endblock %}