{% extends "base.html" %} {% block title %}Run confirmation{% endblock %} {% load colour_table_row %} {% load natural_time_difference %} {% load naturaltime from humanize %} {% load static %} {% block body %} {% if runs and not error %}
Successfully submitted {% if runs|length == 1 %} run {% else %} runs {% endif %} for reduction:
    {% for run in runs %}
  • {{ run.0 }} version {{ run.1 }} View
  • {% endfor %}
{% if queued %}
There are currently {{ queued }} runs queued.
{% endif %}
Description: {% if run_description %}{{ run_description }}{% else %}No description provided{% endif %}

Standard Variables
    {% for name, value in variables.standard_vars.items %}
  • {{ name }}: {{ value }}
  • {% endfor %}
Advanced Variables
    {% for name, value in variables.advanced_vars.items %}
  • {{ name }}: {{ value }}
  • {% endfor %}
{% else %}
{{ error }}Go Back
{% endif %} {% endblock %}