{% extends "ereuse_devicehub/base_site.html" %} {% block main %}

Inventory

{% if lot %}
{% if lot and lot.is_temporary and not lot.devices %} Remove Lot {% endif %}
{% if lot and lot.is_temporary %} Add selected Devices to a lot {% endif %}
{% if lot and lot.is_temporary %} Remove selected devices from a lot {% endif %}
{% endif %}
{% if lot and not lot.is_temporary %} {% endif %}
Computers
{% for dev in devices %} {% endfor %}
Select all Title DHID Tags Status Update
{{ dev.type }} {{ dev.manufacturer|d('', true) }} {{ dev.model|d('', true) }} {{ dev.devicehub_id }} {% for t in dev.tags | sort(attribute="id") %} {{ t.id }} {% if not loop.last %},{% endif %} {% endfor %} {% if dev.status %}{{ dev.status }}{% endif %} {{ dev.updated.strftime('%H:%M %d-%m-%Y') }}
{% if lot and not lot.is_temporary %}
Documents
{% for doc in lot.trade.documents %} {% endfor %}
File Uploaded on
{% if doc.url.to_text() %} {{ doc.file_name}} {% else %} {{ doc.file_name}} {% endif %} {{ doc.created.strftime('%H:%M %d-%m-%Y')}}
{% endif %}
{% include "inventory/addDeviceslot.html" %} {% include "inventory/addDevicestag.html" %} {% include "inventory/removeDeviceslot.html" %} {% include "inventory/removelot.html" %} {% include "inventory/actions.html" %} {% include "inventory/allocate.html" %} {% include "inventory/data_wipe.html" %} {% include "inventory/trade.html" %} {% include "inventory/alert_export_error.html" %} {% endblock main %}