mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
11 lines
402 B
HTML
11 lines
402 B
HTML
|
{% if paths|length > 1 %}
|
||
|
<td colspan="2">Multiple connections</td>
|
||
|
{% elif paths %}
|
||
|
{% with endpoint=paths.0.destination %}
|
||
|
<td><a href="{{ endpoint.parent.get_absolute_url }}">{{ endpoint.parent }}</a></td>
|
||
|
<td><a href="{{ endpoint.get_absolute_url }}">{{ endpoint }}</a></td>
|
||
|
{% endwith %}
|
||
|
{% else %}
|
||
|
<td colspan="2" class="text-muted">Not connected</td>
|
||
|
{% endif %}
|