# django__django-14411 # Loki Mode Multi-Agent Patch # Attempts: 1 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -48,6 +48,9 @@ class ReadOnlyPasswordHashWidget(forms.Widget): }) return context + def id_for_label(self, id_, index=None): + return None + class ReadOnlyPasswordHashField(forms.Field): widget = ReadOnlyPasswordHashWidget