An LVM LN2 fill was completed successfully.

Events

Time at the start of the purge {{ event_times.purge_start.strftime('%H:%M:%S') if event_times.purge_start }}
Time at the end of the purge {{ event_times.purge_complete.strftime('%H:%M:%S') if event_times.purge_complete }}
Time at the start of the fill {{ event_times.fill_start.strftime('%H:%M:%S') if event_times.fill_start }}
Time at the end of the fill {{ event_times.fill_complete.strftime('%H:%M:%S') if event_times.fill_complete }}
Cryostat status

{% if spec_data %}
{% for cryostat in spec_data %} {% for key, value in spec_data[cryostat].items() %} {% else %} {{ "{:.2e}".format(value) }} {% endif %} {% endfor %} {% endfor %}
Cryostat CCD temp. (C) LN2 temp. (C) Pressure (torr)
{{ cryostat }} {% if key == "ccd" or key == "ln2" %} {{ value | round(1) }}
{% else %}
Cryostat data was not available at the time of sending this email.
{% endif %}
Valve open times

{% if valve_data %}
{% for valve, data in valve_data.items() %} {% endfor %}
Valve Open Closed Elapsed
{{ valve }} {{ data.open_time.strftime('%H:%M:%S') if data.open_time }} {{ data.close_time.strftime('%H:%M:%S') if data.close_time }} {{ "{:.1f}".format(data.elapsed) if data.elapsed }}
{% else %}
Valve times were not available at the time of sending this email.
{% endif %}
Log stream

{% if log_lines %}
                {% for line in log_lines -%}
                    {{ line }}
                {%- endfor %}
            
{% else %}
Log stream was not available at the time of sending this email.
{% endif %}
Images

{% if has_images %}
{% else %}
No images were provided.
{% endif %}