From bc3a06a35e6d6b938ef96f96ade42343837f7605 Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Fri, 18 Jul 2025 08:57:12 -0500 Subject: [PATCH] Rename to Application Services/Application Service Templates in nav menu --- netbox/netbox/navigation/menu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/netbox/navigation/menu.py b/netbox/netbox/navigation/menu.py index 982d40829..ea8d886c4 100644 --- a/netbox/netbox/navigation/menu.py +++ b/netbox/netbox/navigation/menu.py @@ -209,8 +209,8 @@ IPAM_MENU = Menu( label=_('Other'), items=( get_model_item('ipam', 'fhrpgroup', _('FHRP Groups')), - get_model_item('ipam', 'servicetemplate', _('Service Templates')), - get_model_item('ipam', 'service', _('Services')), + get_model_item('ipam', 'servicetemplate', _('Application Service Templates')), + get_model_item('ipam', 'service', _('Application Services')), ), ), ),