mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
81 lines
3.2 KiB
HTML
81 lines
3.2 KiB
HTML
{% extends 'dcim/device_component.html' %}
|
|
{% load helpers %}
|
|
{% load plugins %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-6">
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
Inventory Item
|
|
</h5>
|
|
<div class="card-body">
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">Device</th>
|
|
<td>
|
|
<a href="{{ object.device.get_absolute_url }}">{{ object.device }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Parent Item</th>
|
|
<td>
|
|
{% if object.parent %}
|
|
<a href="{{ object.parent.get_absolute_url }}">{{ object.parent }}</a>
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Name</th>
|
|
<td>{{ object.name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Label</th>
|
|
<td>{{ object.label|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Manufacturer</th>
|
|
<td>
|
|
{% if object.manufacturer %}
|
|
<a href="{{ object.manufacturer.get_absolute_url }}">{{ object.manufacturer }}</a>
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Part ID</th>
|
|
<td>{{ object.part_id|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Serial</th>
|
|
<td>{{ object.serial|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Asset Tag</th>
|
|
<td>{{ object.asset_tag|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Description</th>
|
|
<td>{{ object.description|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% include 'inc/panels/custom_fields.html' %}
|
|
{% include 'inc/panels/tags.html' %}
|
|
{% plugin_left_page object %}
|
|
</div>
|
|
<div class="col col-md-6">
|
|
{% plugin_right_page object %}
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
{% plugin_full_width_page object %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|