{% extends "base.html" %} {% block title %}{{ instrument.name|default:"Instrument not found" }} - Configure new jobs{% endblock %} {% load static %} {% block body %} {% if not instrument or message %}
{{ message }}
{% else %} {% if not instrument.is_active %}
Instrument is not active.
{% else %} {{ instrument.name }} - Configure New Runs

{{ instrument.name }} - Configure New Runs

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

View upcoming saved configurations

{% if current_experiment_reference > 0 %} Click here to submit variables for a run range {% else %} Click here to submit variables for an experiment reference {% endif %}


{% csrf_token %}
{% include "snippets/variables/form_warnings.html" %}
{% if current_experiment_reference > 0 %}
{% else %}
Please Note: The default script values will be used from run onwards. You will be able to change this by selecting the appropriate "edit variables" link from the Instrument Summary page.
{% endif %}
{% 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" %}
{% endif %} {% endif %} {% endblock %} {% block stylesheets %} {% endblock %} {% block scripts %} {% endblock %}