{% extends 'layouts/base.html' %} {% set page_title = 'Run {0} conditions'.format(run.number) %} {% block css %} {{ super() }} {% endblock %} {% block container %}
{% if run.start_time %} Run start {{ run.start_time }} {% else %} No run start information {% endif %} {% if run.end_time %} Run ended {{ run.end_time }} {% else %} No run end information {% endif %} {% if run.start_time and run.end_time %} Length: {{ (run.end_time - run.start_time) }} {% endif %}