{% extends "modern/base.html" %} {% block title %}Equipment - BLOOM LIMS{% endblock %} {% block content %}
{% if equipment %} {% for item in equipment %}
{{ item.euid }} {{ item.json_addl.get('status', 'available') }}

{{ item.name | default(item.subtype) }}

{{ item.subtype }}

{% if item.json_addl.get('location') %}
{{ item.json_addl.get('location') }}
{% endif %}
{% endfor %} {% else %}

No equipment found

{% endif %}
{% endblock %} {% block extra_css %} {% endblock %}