{% extends "base.html" %} {% block title %}Plot {{ plot.id }}{% endblock %} {% block body %}

{{ plot.title }}

{{ plot.created_at }}

Back to plots
{% if plot.figure_json %}

This saved comparison is stored as an interactive Plotly figure with persistent style and axis settings.

{% else %}

Plot image: {{ plots_dir }}/{{ plot.id }}/{{ plot.plot_path }}

{% endif %}
{% if plot.figure_json %}
{% else %} {{ plot.title }} {% endif %}

Selected runs

{% if plot.selected_runs %}
{% for run in plot.selected_runs %}
{{ run.name }} Orders: {{ run.orders | join(', ') }}
{% endfor %}
{% else %}

No runs selected.

{% endif %}
{% endblock %}