network_inventory/network_inventory/inventory/templates/inventory/device_details.html

19 lines
597 B
HTML
Raw Normal View History

2017-12-25 13:50:32 +01:00
{% extends "inventory/base.html" %}
{% block section_title %}{{ device.name }}{% endblock %}
{% block content %}
<h3>Description</h3>
<p>{{ device.description }}</p>
<h3>Serial Number</h3>
<p><code>{{ device.serialnumber }}</code></p>
<h3>Category</h3>
<p>{{ device.category }}</p>
<h3>Owner</h3>
<p>{{ device.owner }}</p>
<h3>Customer</h3>
<p><a href="{% url 'customer' device.customer.id %}">{{ device.customer }}</a></p>
<h3>Manufacturer</h3>
<p>{{ device.manufacturer }}</p>
<h3>Location</h3>
<p>{{ device.location }}</p>
2017-12-25 13:50:32 +01:00
{% endblock %}