{% if mode == 'full' %}
🧪 Opentrons OT-2 Deck Layout
Available Tips
Used Tips
Plate Wells
Reservoir Wells
{% else %}
{% endif %} {% for row in slot_layout %} {% for slot in row %} {% set info = slot_infos[slot|string] %} {% set slot_label = 'T' if slot == 'Trash' else slot %} {% if mode == 'full' %}
{{ slot_label }}
{{ info.name|safe }}
{{ info.svg|safe }}
{{ info.buttons|safe }}
{% else %}
{{ slot_label }}
{{ info.name|safe }}
{{ info.svg|safe }} {{ info.buttons|safe }}
{% endif %} {% endfor %} {% endfor %}
{% if loaded_instruments %} {% if mode == 'full' %}
🔧 Loaded Pipettes
{% for mount,data in loaded_instruments.items() %}
{{ mount|title }} Mount: {{ data.name.replace('_',' ').title() }}
{% endfor %}
{% else %}
Pipettes: {% for mount,data in loaded_instruments.items() %}{{ mount|title }}: {{ data.name.replace('_',' ').title() }} {% if not loop.last %} | {% endif %}{% endfor %}
{% endif %} {% endif %}
     
{% if mode == 'full' %}
{% endif %}