From ddb8ce90ebd4e3c2121144ae8ee47799698a1610 Mon Sep 17 00:00:00 2001 From: Arthur Date: Wed, 18 Mar 2026 13:49:15 -0700 Subject: [PATCH] fix add prefix button --- netbox/templates/ipam/role.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/netbox/templates/ipam/role.html b/netbox/templates/ipam/role.html index f15e1d050..b7763170a 100644 --- a/netbox/templates/ipam/role.html +++ b/netbox/templates/ipam/role.html @@ -1 +1,10 @@ {% extends 'generic/object.html' %} +{% load i18n %} + +{% block extra_controls %} + {% if perms.ipam.add_prefix %} + + {% trans "Add Prefix" %} + + {% endif %} +{% endblock extra_controls %}