{% extends 'print_base.html' %} {% comment %} html template for a single panelist history {% endcomment %} {% block content %}

Winose Evolution

panel member reference gas history

{{ current_substance }}
panel member {{ panelist.shorthand }}
date of birth {{ panelist.date_of_birth }}
gender {{ panelist.get_gender_display }}
criteria
10σ ≤ 2.3
0.02 ≤ 10YITE ≤ 0.08
{% for h in history %} {% empty %} no data yet. {% endfor %}
Date ITE PPM μmol/mol 10σ 10Yite
{{ h.date|date:"d.m.y" }} {{ h.ite|floatformat:1 }} {{ h.concentration|floatformat:1 }} {{ h.ppm|floatformat:4 }} {% if h.site_10 and not h.site_ok %} ({{ h.site_10|floatformat:4 }}) {% else %} {{ h.site_10|floatformat:4 }} {% endif %} {% if h.y_ite_10 and not h.y_ite_ok %} ({{ h.y_ite_10|floatformat:4 }}) {% else %} {{ h.y_ite_10|floatformat:4 }} {% endif %}
{% endblock content %}