{% extends 'print_base.html' %} {% load wnsq_tags %} {% block header %} Project report {{ project.name }} {% endblock header %} {% block content %}
{% if header_logo %} {% endif %}
{% for header_text_line in header_text %} {% if forloop.first %} {{ header_text_line }}
{% else %} {{ header_text_line }}
{% endif %} {% endfor %}

Project report — {{ project.name }} — {% now "SHORT_DATE_FORMAT" %}

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 }}

{% if commentsColumn %} {% endif %} {% if remarksColumn %} {% endif %} {% for mes in measurements %} {% if commentsColumn %} {% endif %} {% if remarksColumn %} {% endif %} {% endfor %}
Sample results
name reference container sampling date analysis date predilution analysis result OUE/m3 panel size/ITEscommentsremarks
{{ 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 }} {{ mes.comments }} {{ mes.remark|value_or_nothing }}
{% for line in footer_text %} {{ line }}
{% endfor %}
{% if footer_logo %} {% endif %}
{% endblock content %}