From c9db424913545dd3fa62859b185ac251f9386e17 Mon Sep 17 00:00:00 2001 From: Arthur Date: Tue, 18 Oct 2022 14:00:25 -0700 Subject: [PATCH] 10643 update other forms --- netbox/dcim/forms/models.py | 2 +- netbox/tenancy/forms/models.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/dcim/forms/models.py b/netbox/dcim/forms/models.py index 0cd981fb0..8f1626361 100644 --- a/netbox/dcim/forms/models.py +++ b/netbox/dcim/forms/models.py @@ -226,7 +226,7 @@ class RackRoleForm(NetBoxModelForm): slug = SlugField() fieldsets = ( - ('Region', ( + ('Rack Role', ( 'name', 'slug', 'color', 'description', 'tags', )), ) diff --git a/netbox/tenancy/forms/models.py b/netbox/tenancy/forms/models.py index e81288943..34ba6847a 100644 --- a/netbox/tenancy/forms/models.py +++ b/netbox/tenancy/forms/models.py @@ -71,7 +71,7 @@ class ContactGroupForm(NetBoxModelForm): slug = SlugField() fieldsets = ( - ('Tenant Group', ( + ('Contact Group', ( 'parent', 'name', 'slug', 'description', 'tags', )), )