Browse Source

Merge pull request #1403 from huzichunjohn/issue_1400

Fixes #1400: Device interface shows twice on IP Addresses page
Jeremy Stretch 7 years ago
parent
commit
50ccccc3f4
1 changed files with 0 additions and 1 deletions
  1. 0 1
      netbox/ipam/tables.py

+ 0 - 1
netbox/ipam/tables.py

@@ -80,7 +80,6 @@ IPADDRESS_LINK = """
 IPADDRESS_DEVICE = """
 IPADDRESS_DEVICE = """
 {% if record.interface %}
 {% if record.interface %}
     <a href="{{ record.interface.device.get_absolute_url }}">{{ record.interface.device }}</a>
     <a href="{{ record.interface.device.get_absolute_url }}">{{ record.interface.device }}</a>
-    ({{ record.interface.name }})
 {% else %}
 {% else %}
     &mdash;
     &mdash;
 {% endif %}
 {% endif %}