﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
35871	Example changes that show the impact of alter the base_fields attribute.	Antoliny	Antoliny	"There is an example of the impact of changing the attribute of base_fields in the [https://docs.djangoproject.com/en/5.1/ref/forms/api/#django.forms.Form.fields forms api document].

According to the above document, I think we need to show the impact on subsequent ContactForm when we change the base_fields attribute as an example of ContactForm.
{{{
>>> f.base_fields[""subject""].label_suffix = ""?""
>>> another_f = ContactForm(auto_id=False)
>>> another_f.as_div().split(""</div>"")[0]
'<div><label for=""id_subject"">Subject?</label><input type=""text"" name=""subject"" maxlength=""100"" required id=""id_subject"">'
}}}
"	Cleanup/optimization	closed	Documentation	5.0	Normal	fixed	Forms Document		Ready for checkin	1	0	0	0	0	0
