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
2023-07-28 16:30:25 -04:00

10 lines
293 B
HTML

{% load i18n %}
{% if path.destination_id %}
{% with endpoint=path.destination %}
<td>{{ endpoint.parent_object|linkify }}</td>
<td>{{ endpoint|linkify }}</td>
{% endwith %}
{% else %}
<td colspan="2" class="text-muted">{% trans "Not connected" %}</td>
{% endif %}