{% extends "inventory/inventory_app.html" %} {% block content %} {% if item %}

Item Summary:

Print

UUID: {{item.uuid}}
Barcode ID: {{ item.barcode_id }}
Type: {{ item.item_type.name }}

Location: {{ item.location.name }}
Status: {% if item.status %}{{ item.status.name }}{% else %}N/A{% endif %}

{% if item.item_info.model_id %} Model ID: {{ item.item_info.model_id }}
{% endif %} {% if item.item_info.part_number %} Part Number: {{ item.item_info.part_number }}
{% endif %} {% if item.item_info.lot_number %} Lot Number: {{ item.item_info.lot_number }}
{% endif %}
{% if item.item_info.url %} Item Website: Link
{% endif %} Vendor: {% if item.item_info.vendor.url %}{% endif %}{{ item.item_info.vendor.name }}{% if item.item_info.vendor.url %}{% endif %}
Purchase Date:{% if item.item_info.purchase_date %}{{ item.item_info.purchase_date }}{% else %}N/A{% endif %}
Warenty (Months):{% if item.item_info.warenty_months %}{{item.item_info.warenty_months}}{% else %}N/A{% endif %}

Item Info Notes:

{% if item.item_info.notes %}{{ item.item_info.notes }}{% else %}No notes found{% endif %}


Item Specific Notes:

{% if item.notes %}{{ item.notes }}{% else %}No notes found{% endif %}

{% else %}

Item with UUID of {{ uuid }} not found.

{% endif %} {% endblock %}