{% extends 'print_base.html' %} {% load wnsq_tags %} {% block header %}
| Client | |
|---|---|
| Name | {{ project.client__client__name }} |
| Address |
{{ project.client__address }} {{ project.client__zip }} {{ project.client__city }} {{ project.client__country }} |
| Phone | {{ project.client__phone }} |
| Contact | {{ contact_person_client|value_or_nothing }} |
| Laboratory | |
|---|---|
| Order date/Project issued | {{ created_at }} |
| Reference | {{ project.reference }} |
| Project manager | {{ project_manager|value_or_nothing }} |
| Lab team | {% for op in lab_tech_list %} {{ op }}  {% endfor %} |
| Report generated by | {{ created_by }} |
{{ template.generic_remarks|linebreaks }}
| Sample results | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| name | reference | container | sampling date | analysis date | predilution | analysis result | OUE/m3 | panel size/ITEs | {% if commentsColumn %}comments | {% endif %} {% if remarksColumn %}remarks | {% endif %}
| {{ mes.sample__name }} | {{ mes.sample__reference|value_or_nothing }} | {{ mes.sample__contained_in__name }} | {{ mes.sample__sampled_at|date:'d/m/y H:i' }} | {{ mes.finished_at|date:'d/m/y H:i' }} | {% if mes.predilution > 1 %} {{ mes.predilution|floatformat:2 }} {% else %} {% nothing %} {% endif %} | {% if mes.analysis_result %} {{ mes.analysis_result|floatformat:2 }} {% else %} {% nothing %} {% endif %} | {% if mes.result %} {% if not mes.compliant_result %}({% endif %} {{ mes.result|floatformat:2 }} {% if not mes.compliant_result %}){% endif %} {% else %} {% nothing %} {% endif %} | {{ mes.panelist_count }} / {{ mes.ite_count }} | {% if commentsColumn %}{{ mes.comments }} | {% endif %} {% if remarksColumn %}{{ mes.remark|value_or_nothing }} | {% endif %}