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', )), )