mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-23 04:22:01 -06:00
Fixes #9758: Display parent object of connected termination
This commit is contained in:
parent
a8576e54c7
commit
e523006ec3
@ -99,6 +99,7 @@ Custom field UI visibility has no impact on API operation.
|
||||
|
||||
### Bug Fixes (from Beta2)
|
||||
|
||||
* [#9758](https://github.com/netbox-community/netbox/issues/9758) - Display parent object of connected termination
|
||||
* [#9900](https://github.com/netbox-community/netbox/issues/9900) - Pre-populate site & rack fields for cable connection form
|
||||
* [#9938](https://github.com/netbox-community/netbox/issues/9938) - Exclude virtual interfaces from terminations list when connecting a cable
|
||||
* [#9939](https://github.com/netbox-community/netbox/issues/9939) - Fix list of next nodes for split paths under trace view
|
||||
|
@ -1,5 +1,9 @@
|
||||
LINKTERMINATION = """
|
||||
{% for termination in value %}
|
||||
{% if termination.parent_object %}
|
||||
<a href="{{ termination.parent_object.get_absolute_url }}">{{ termination.parent_object }}</a>
|
||||
<i class="mdi mdi-chevron-right"></i>
|
||||
{% endif %}
|
||||
<a href="{{ termination.get_absolute_url }}">{{ termination }}</a>{% if not forloop.last %},{% endif %}
|
||||
{% empty %}
|
||||
{{ ''|placeholder }}
|
||||
|
Loading…
Reference in New Issue
Block a user