diff --git a/netbox/templates/ipam/ipaddress.html b/netbox/templates/ipam/ipaddress.html
index 8b628c2f7..ba0f0c5e6 100644
--- a/netbox/templates/ipam/ipaddress.html
+++ b/netbox/templates/ipam/ipaddress.html
@@ -91,10 +91,13 @@
- Outside NAT IPs |
+ NAT (Outside) |
{% for ip in object.nat_outside.all %}
- {{ ip|linkify }}
+ {{ ip|linkify }}
+ {% if ip.assigned_object %}
+ ({{ ip.assigned_object.parent_object|linkify }})
+ {% endif %}
{% empty %}
{{ ''|placeholder }}
{% endfor %}
|