{% set page_title = 'Plate Visualization' %}
{{ page_title }}
{% set bloom_mod = 'lims' %}
{% include 'legacy/bloom_header.html' %}
{{ plate.euid }}
- {{ plate.name }} : : : {{ plate.type }} : : : {{ plate.subtype }}
{% for i in range(plate.json_addl['properties']['num_rows']) %}
{{ 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'[i] }}
{% endfor %} {% for i in range(plate.json_addl['properties']['num_cols']) %}
{{ i + 1 }}
{% endfor %} {% for lineage in plate.parent_of_lineages %} {% set well = lineage.child_instance %} {% if well.type == 'well' %} {% set cont_address = well.json_addl.get('cont_address', {}) %} {% set col_idx = cont_address.get('col_idx', 'Unknown') %} {% set row_idx = cont_address.get('row_idx', 'Unknown') %} {% set quant_value = well.json_addl.properties.get('quant_value', 0) %}
{{ quant_value }}
{% endif %} {% endfor %}