From 8a77ec70f29d0056ca80774f1719c475a9b6e5d0 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 5 Feb 2024 12:59:50 -0500 Subject: [PATCH] Fixes #15015: Pre-populate assigned tenant when allocating next available IP address under prefix view --- netbox/templates/ipam/prefix.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/templates/ipam/prefix.html b/netbox/templates/ipam/prefix.html index ec6138d69..fc7f8c5b2 100644 --- a/netbox/templates/ipam/prefix.html +++ b/netbox/templates/ipam/prefix.html @@ -134,7 +134,7 @@ {% with first_available_ip=object.get_first_available_ip %} {% if first_available_ip %} {% if perms.ipam.add_ipaddress %} - {{ first_available_ip }} + {{ first_available_ip }} {% else %} {{ first_available_ip }} {% endif %}