{%- extends "base.html" %} {% from "_helpers.html" import link_to_item, link_to_children %} {% block title %}View Item - ICS Inventory{% endblock %} {% block main %}

Item {{ item.ics_id }}

ICS id
{{ item.ics_id }}
Created
{{ item._created.strftime("%Y-%m-%d %H:%M") }}
Updated
{{ item._updated.strftime("%Y-%m-%d %H:%M") }}
Serial number
{{ item.serial_number }}
Manufacturer
{{ item.manufacturer }}
Model
{{ item.model }}
Location
{{ item.location }}
Status
{{ item.status }}
Parent
{{ link_to_item(item.parent) }}
Children
{{ link_to_children(item) }}
{%- endblock %}