{% extends "base.html" %} {% block title %}RB{{ experiment.reference_number|default:" not found" }}{% endblock %} {% load colour_table_rows %} {% load naturaltime from humanize %} {% block body %} {% if experiment %}

RB{{ experiment.reference_number }}

Title: {{ experiment_details.title }}
Principal Investigator: {{ experiment_details.pi }}
Instrument: {% if experiment_details.instrument %} {{ experiment_details.instrument }} {% endif %}
Start Date: {{ experiment_details.start_date }}
End Date: {{ experiment_details.end_date }}
Data: {% if data %} {% for location in data %} {{ location.file_path }}
{% endfor %} {% else %} No experiment data found {% endif %}
Reduced: {% if reduced_data %} {% for location in reduced_data %} {{ location.file_path }}
{% endfor %} {% else %} No reduced data found {% endif %}
{% if runs_with_started_by %}

Reduction Jobs ({{ run_count }})

{% for job, started_by in runs_with_started_by %} {% endfor %}
Job Number Status Last Updated Submitted By
{{ job.title }} {{ job.status.value_verbose }} {{ job.last_updated|naturaltime }} {% if started_by %} {{ started_by }} {% else %} Unknown {% endif %}
{% else %}
No runs found
{% endif %}
{% else %}
Experiment not found.
{% endif %} {% endblock %}