{% extends "base.html" %} {% block content %}

{{ _('Non-Loanable Devices Inventory') }}

{{ _('These devices are tracked in inventory but cannot be loaned to users.') }}

{{ _('Add Non-Loanable Device') }} {% if devices %}
{% for device in devices %} {% endfor %}
{{ _('Type') }} {{ _('Brand') }} {{ _('Model') }} {{ _('Serial Number') }} {{ _('Location') }} {{ _('Status') }} {{ _('Actions') }}
{{ device.device_type }} {{ device.brand }} {{ device.model }} {{ device.serial_number }} {{ device.location or '-' }} {{ device.status }} {{ _('Edit') }} {{ _('Delete') }}
{% else %}

{{ _('No non-loanable devices registered.') }}

{% endif %}
{% endblock %}