{% extends 'base.html' %} {% block content %}
Inventory item.
| Key | Value |
|---|---|
| Type | {{ item["type"] }} |
| Vendor | {{ item.get("hardware").vendor }} |
| Product | {{ item.get("hardware").product }} |
| Serial number | {{ item.get("hardware").serial }} |
| MAC address | {{ item.mac }} |
| Name | {{ item.name }} |
| Comment | {{ item.comment }} |
| Owner | {{ item.inventory.get("owner").username | display_name }} |
| Current user | {{ item.inventory.get("user").username | display_name }} |
| URL slug | {% if item.get("shortener").slug %} k6.ee/{{ item.get("shortener").slug }} {% endif %} |
| Issue tracker | Issue tracker |
| Public | {% if item.inventory.public %}check_circle{% endif %} |
| Usable | {% if item.inventory.usable %}check_circle{% endif %} |
{{ item.description | markdown }}