From 538f9469b2ef9864be47d37bb1f3394fcf48df7b Mon Sep 17 00:00:00 2001 From: dreng Date: Tue, 27 Sep 2022 16:28:36 +0200 Subject: [PATCH] Revert change that did not address this branch --- netbox/dcim/tables/template_code.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/netbox/dcim/tables/template_code.py b/netbox/dcim/tables/template_code.py index 0b1e28095..0869530ab 100644 --- a/netbox/dcim/tables/template_code.py +++ b/netbox/dcim/tables/template_code.py @@ -46,9 +46,7 @@ INTERFACE_IPADDRESSES = """ INTERFACE_FHRPGROUPS = """
{% for assignment in value.all %} - {% for ip in assignment.group.ip_addresses.all %} - {{ assignment.group.get_protocol_display }}: {{ assignment.group.group_id }} ({{ ip }}) - {% endfor %} + {{ assignment.group.get_protocol_display }}: {{ assignment.group.group_id }} {% endfor %}
"""