1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes: #8575 Implement rack_a and rack_b for cable table

This commit is contained in:
Alex Gittings
2022-03-15 00:02:16 +00:00
parent 1add5accf2
commit a143eca57d
2 changed files with 31 additions and 3 deletions

View File

@@ -8,6 +8,22 @@
<a href="{{ termination.device.get_absolute_url }}">{{ termination.device }}</a>
</td>
</tr>
{% if termination.device.site %}
<tr>
<td>Site</td>
<td>
<a href="{{ termination.device.site.get_absolute_url }}">{{ termination.device.site }}</a>
</td>
</tr>
{% endif %}
{% if termination.device.rack %}
<tr>
<td>Rack</td>
<td>
<a href="{{ termination.device.rack.get_absolute_url }}">{{ termination.device.rack }}</a>
</td>
</tr>
{% endif %}
<tr>
<td>Type</td>
<td>
@@ -35,4 +51,4 @@
</td>
</tr>
{% endif %}
</table>
</table>