{% extends "base.html" %} {% block content %}
{# Page Header #}

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

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

{{ _('Add Non-Loanable Device') }}
{% if devices %} {# Desktop Table (hidden on mobile) #}
{% 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 }}
{# Mobile Cards (hidden on desktop) #} {% else %}

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

{{ _('Add Device') }}
{% endif %}
{% endblock %}