1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
Files
netbox-community-netbox/netbox/templates/dcim/inc/endpoint_connection.html

9 lines
263 B
HTML
Raw Normal View History

2020-10-06 10:37:59 -04:00
{% if path.destination_id %}
2020-10-01 14:16:43 -04:00
{% with endpoint=path.destination %}
2022-03-22 14:51:20 -04:00
<td>{{ endpoint.parent_object|linkify }}</td>
<td>{{ endpoint|linkify }}</td>
{% endwith %}
{% else %}
<td colspan="2" class="text-muted">Not connected</td>
{% endif %}