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

Winose Evolution

{% trans 'reference gas history' %}

{{ current_substance }}
{% trans 'panelist' %} {{ panelist.shorthand }}
{% trans 'date of birth' %} {{ panelist.date_of_birth }}
{% trans 'gender' %} {{ panelist.get_gender_display }}
{% trans '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 %}