{% extends "base.html" %} {% block content %}
{{ _('These devices are tracked in inventory but cannot be loaned to users.') }}
{{ _('Add Non-Loanable Device') }} {% if devices %}| {{ _('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') }} |
{{ _('No non-loanable devices registered.') }}
{% endif %}