mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-21 20:18:38 -06:00
22 lines
619 B
HTML
22 lines
619 B
HTML
{% extends "ui/panels/_base.html" %}
|
|
{% load helpers i18n %}
|
|
|
|
{% block panel_content %}
|
|
{% if object.installed_device %}
|
|
{% with device=object.installed_device %}
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Device" %}</th>
|
|
<td>{{ device|linkify }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Device Type" %}</th>
|
|
<td>{{ device.device_type }}</td>
|
|
</tr>
|
|
</table>
|
|
{% endwith %}
|
|
{% else %}
|
|
<div class="card-body text-muted">{% trans "None" %}</div>
|
|
{% endif %}
|
|
{% endblock panel_content %}
|