{% extends "base.html" %} {% import "_run_control.html" as runctl %} {% block title %}Live | Silisocs Studio{% endblock %} {% block crumb %}Live{% endblock %} {% block content %}

Live signal

Worlds in motion

Follow simulation progress and process output as artifacts arrive.

{% if job %}
{{ job.status }}{{ job.kind }}{{ job.scenario or job.id }}Enter live run
{% if interactive and job.status in ('queued', 'running') %}{{ runctl.bar() }}{% endif %}

Live log

Waiting for process output.
{% if interactive and job.status in ('queued', 'running') %}{{ runctl.script(job.id, 'events') }}{% endif %} {% elif jobs %}
{% for item in jobs %}{{ item.scenario or item.kind }}{{ item.kind }} ยท {{ item.created_at }}{{ item.status }}{% endfor %}
{% else %}
No worlds are moving

Launch a scenario and its live signal will appear here.

Launch a world
{% endif %} {% endblock %}