Updated "Personal Info" to "User Profile" again

This commit is contained in:
CocoByte 2024-07-02 09:06:28 -06:00
parent 05f7e69903
commit 508c3d3988
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F
2 changed files with 3 additions and 3 deletions

View file

@ -697,7 +697,7 @@ class MyUserAdmin(BaseUserAdmin, ImportExportModelAdmin):
)
},
),
("Personal Info", {"fields": ("first_name", "middle_name", "last_name", "title", "email", "phone")}),
("User Profile", {"fields": ("first_name", "middle_name", "last_name", "title", "email", "phone")}),
(
"Permissions",
{
@ -721,7 +721,7 @@ class MyUserAdmin(BaseUserAdmin, ImportExportModelAdmin):
# NOT all fields are readonly for admin, otherwise we would have
# set this at the permissions level. The exception is 'status'
analyst_readonly_fields = [
"Personal Info",
"User Profile",
"first_name",
"middle_name",
"last_name",