1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #7880: Include assigned IP addresses in FHRP group object representation

This commit is contained in:
jeremystretch
2021-11-19 11:34:59 -05:00
parent b6fe613329
commit 5f59f458f4
5 changed files with 17 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ INTERFACE_IPADDRESSES = """
INTERFACE_FHRPGROUPS = """
<div class="table-badge-group">
{% for assignment in value.all %}
<a href="{{ assignment.group.get_absolute_url }}">{{ assignment.group.group_id }} ({{ assignment.group.get_protocol_display }})</a>
<a href="{{ assignment.group.get_absolute_url }}">{{ assignment.group.get_protocol_display }}: {{ assignment.group.group_id }}</a>
{% endfor %}
</div>
"""