We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39b03ab commit 1700a92Copy full SHA for 1700a92
netbox/templates/dcim/device.html
@@ -26,6 +26,12 @@ <h2 class="card-header">{% trans "Device" %}</h2>
26
<th scope="row">{% trans "Location" %}</th>
27
<td>{% nested_tree object.location %}</td>
28
</tr>
29
+ {% if object.virtual_chassis %}
30
+ <tr>
31
+ <th scope="row">{% trans "Virtual Chassis" %}</th>
32
+ <td>{{ object.virtual_chassis|linkify }}</td>
33
+ </tr>
34
+ {% endif %}
35
<tr>
36
<th scope="row">{% trans "Rack" %}</th>
37
<td class="d-flex justify-content-between align-items-start">
0 commit comments