mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
10 lines
293 B
HTML
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 %}
|