{% extends "base.html" %}
{% block title %}{{ instrument.name|default:"Instrument not found" }} - Re-run past jobs{% endblock %}
{% load view %}
{% 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 %}
Default Variables
Standard Variables
{% for name,variable in default_standard_variables.items %}
{{ name }}: {{ variable.value }}
{% endfor %}
Advanced Variables
{% for name,variable in default_advanced_variables.items %}
{{ name }}: {{ variable.value }}
{% endfor %}
{% include "snippets/edit_variables.html" with standard_variables=current_standard_variables advanced_variables=current_advanced_variables instrument=instrument.name only %}