From 47c0f9586c74ed866b6f33d40045b4b4af675b53 Mon Sep 17 00:00:00 2001 From: Rachid Mrad Date: Wed, 21 Feb 2024 19:37:10 -0500 Subject: [PATCH] update definition --- src/registrar/admin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/registrar/admin.py b/src/registrar/admin.py index 3aa9aea41..c3ce00889 100644 --- a/src/registrar/admin.py +++ b/src/registrar/admin.py @@ -29,7 +29,9 @@ logger = logging.getLogger(__name__) class MyUserAdminForm(UserChangeForm): - """This form utilizes the custom widget for its class's ManyToMany UIs.""" + """This form utilizes the custom widget for its class's ManyToMany UIs. + + It inherits from UserChangeForm which has special handling for the password and username fields.""" class Meta: model = models.User