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

{{ plot.title }}

{{ plot.created_at }}

Back to plots

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

{{ plot.title }}

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 %}