{% extends "base.html" %} {% block head %} {% endblock %} {% block content %}

Calibration History for {{ probe.serial_number }}

Probe Details

Description: {{ probe.description }}
Model ID: {{ probe.model_id }

Deviation Trends
{% for cal in calibrations %} {% endfor %}
Date Channel Standard Calibrated By Deviation (High/Mid/Low) Status Actions
{{ cal.date }} {{ cal.channels.serial_number }} {{ cal.standards.make }} {{ cal.standards.model }} {{ cal.calibrated_by.name }} {{ "%.3f"|format(cal.deviation_high) }} / {{ "%.3f"|format(cal.deviation_mid) }} / {{ "%.3f"|format(cal.deviation_low) }} {% if cal.passed %} Passed {% else %} Failed {% endif %} Details
{% endblock %}