← Back
{item.name}
{#if item.category}
{item.category}
{/if}
{item.shortId}
{#if item.description}
Description
{item.description}
{/if}
Location
{locationName}
{#if item.lastSeenTimestamp}
Last Seen
{formatDistanceToNow(new Date(item.lastSeenTimestamp), { addSuffix: true })}
{/if}
Type
{item.itemType}
Storage Tier
{item.storageTier}
{#if item.brand}
Brand
{item.brand}
{/if}
{#if item.serialNumber}
Serial
{item.serialNumber}
{/if}
{#if item.color}
Color
{item.color}
{/if}
{#if item.currentQuantity != null && item.originalQuantity}
{@const percent = Math.round((item.currentQuantity / item.originalQuantity) * 100)}
Quantity
{item.currentQuantity}{item.quantityUnit ? ` ${item.quantityUnit}` : ''} / {item.originalQuantity}
{/if}
{#if item.custodyState === 'checked-in'}
{#if showCheckOut}
Check Out
{:else}
{/if}
{:else}
Check In
{/if}
{#if !confirmDelete}
{:else}
{/if}
{/if}