{% extends "base.html" %} {% block title %}Saved plots{% endblock %} {% block body %}

Saved plots

Interactive comparison plots of completed simulation runs.

New plot
{% if plots %}
{% for plot in plots %}
{{ plot.title }}

{{ plot.created_at }} {% if plot.selected_runs %} · {{ plot.selected_runs | length }} run{% if plot.selected_runs | length != 1 %}s{% endif %} {% endif %}

{% endfor %}
{% else %}

No saved plots yet. Create one from completed runs.

{% endif %} {% endblock %}