Details
Manufacturer
{{ object.manufacturer|default:"" }}
Model
{{ object.model|default:"" }}
Serial Number
{{ object.last_snapshot.doc.device.serialNumber|default:"" }}
{% for chid in object.hids %}
{% endfor %}
Annotations
Key |
Value |
Created on |
|
|
{% for a in object.annotations %}
{% if a.is_user_annotation %}
{{ a.key }} |
{{ a.value }} |
{{ a.created }} |
|
|
{% endif %}
{% endfor %}
{% for tag in lot_tags %}
{{ tag }}
{% for lot in tag.lot_set.filter %}
{% if lot.type == tag %}
{% endif %}
{% endfor %}
{% endfor %}
Documents
File |
Type |
Description |
Uploaded on |
|
|
Components last snapshot
{% for c in object.last_snapshot.doc.components %}
{{ c.type }}
{{ snapshot.created }}
{{ c.manufacturer }}
{{ c.model }}
{{ c.serialNumber }}
{% endfor %}
List of snapshots
{% for snap in object.snapshots %}
{{ snap.created }}
{{ snap.uuid }}
{% endfor %}
{% endblock %}