﻿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
32215	documentation possible error - minor	JD	nobody	"On https://docs.djangoproject.com/en/3.1/topics/forms/modelforms/#topics-forms-modelforms
Move comma in widget descriptor? 
it says:
class AuthorForm(forms.Form):
    name = forms.CharField(max_length=100)
    title = forms.CharField(
        max_length=3,
        widget=forms.Select(choices=TITLE_CHOICES),
    )
    birth_date = forms.DateField(required=False)
and I THINK should be:
class AuthorForm(forms.Form):
    name = forms.CharField(max_length=100)
    title = forms.CharField(
        max_length=3,
        widget=forms.Select(choices=TITLE_CHOICES) 
    ), 
    birth_date = forms.DateField(required=False)"	Cleanup/optimization	new	Documentation	3.1	Normal		possible documentation typo		Unreviewed	0	0	0	0	1	0
