{% extends "modern/base.html" %} {% block title %}Plate Visualization - BLOOM LIMS{% endblock %} {% block content %}

Select Plate

{{ plate.name if plate else 'Select a plate' }}

Empty Occupied Selected Control
{% for col in range(1, 13) %}
{{ col }}
{% endfor %} {% for row in ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'] %}
{{ row }}
{% for col in range(1, 13) %}
{{ row }}{{ col }}
{% endfor %} {% endfor %}
{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}