{% 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 %}