{% extends "base.html" %} {% block title %}{{ instrument.name|default:"Instrument not found" }} - Re-run past jobs{% endblock %} {% load static %} {% block body %} {% if not instrument %}
{{ message }}
{% else %} {% if instrument.is_active %}

{{ instrument.name }} - Re-run past jobs

{% include "snippets/instrument_status.html" with processing=processing queued=queued last_instrument_run=last_instrument_run only %}

{% csrf_token %}
{% include "snippets/variables/form_warnings.html" %}
Warning: a maximum of 20 runs can be submitted at one time.
{% include "snippets/variables/form.html" with standard_variables=standard_variables advanced_variables=advanced_variables variable_help=variable_help instrument=instrument.name only %}

Additional Actions

    {% include "snippets/reset_buttons.html" %}
{% else %}
Instrument is not active - it has no runs.
{% endif %} {% endif %} {% endblock %} {% block stylesheets %} {% endblock %} {% block scripts %} {% endblock %}