{% extends "details.html" %} {% block head %} {{ super() }} Submission Details for {{ sub['plate_number'] }} {% endblock %} {% block body %}

Submission Details for {{ sub['plate_number'] }}

   {% if sub['barcode'] %}{% endif %} {{ super() }}

{% for key, value in sub.items() if key not in sub['excluded'] %}     {{ key | replace("_", " ") | title | replace("Pcr", "PCR") }}: {% if key=='cost' %}{% if sub['cost'] %} {{ "${:,.2f}".format(value) }}{% endif %}{% else %}{{ value }}{% endif %}
{% endfor %} {% if sub['custom'] %}{% for key, value in sub['custom'].items() %}     {{ key | replace("_", " ") | title }}: {{ value }}
{% endfor %}{% endif %}

{% if sub['reagents'] %}

Reagents:

{% for item in sub['reagents'] %}     {{ item['role'] }}: {{ item['lot'] }} (EXP: {{ item['expiry'] }})
{% endfor %}

{% endif %} {% if sub['equipment'] %}

Equipment:

{% for item in sub['equipment'] %}     {{ item['role'] }}: {{ item['name'] }} ({{ item['asset_number'] }}): {{ item['processes'][0]|replace('\n\t', '
        ') }}

{% endfor %}

{% endif %} {% if sub['tips'] %}

Tips:

{% for item in sub['tips'] %}     {{ item['role'] }}: {{ item['name'] }} ({{ item['lot'] }})
{% endfor %}

{% endif %} {% if sub['samples'] %}

Samples:

{% for item in sub['samples'] %}     {{ item['well'] }}:{% if item['organism'] %} {{ item['name'] }} - ({{ item['organism']|replace('\n\t', '
        ') }}){% else %} {{ item['name']|replace('\n\t', '
        ') }}{% endif %}

{% endfor %}

{% endif %} {% if sub['ext_info'] %} {% for entry in sub['ext_info'] %}

Extraction Status:

{% for key, value in entry.items() %} {% if "column" in key %}     {{ key|replace('_', ' ')|title() }}: {{ value }}uL
{% else %}     {{ key|replace('_', ' ')|title() }}: {{ value }}
{% endif %} {% endfor %}

{% endfor %} {% endif %} {% if sub['comment'] %}

Comments:

{% for entry in sub['comment'] %}      {{ entry['name'] }}:
{{ entry['text'] }}
- {{ entry['time'] }}
{% endfor %}

{% endif %} {% if sub['platemap'] %}

Plate map:

{{ sub['platemap'] }} {% endif %} {% if sub['export_map'] %}

Plate map:

{% endif %} {% endblock %} {% block signing_button %} {% endblock %}