Skip to content

Commit

Permalink
Fixed #16591 -- Fixed some mismatched variable names in a widgets ref…
Browse files Browse the repository at this point in the history
…erence example. Thanks to santi.romero, el barto, and julien.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16626 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
Gabriel Hurley committed Aug 18, 2011
1 parent 41b31b4 commit 40c8a60
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/ref/forms/widgets.txt
Expand Up @@ -52,15 +52,15 @@ widget on the field. In the following example, the

BIRTH_YEAR_CHOICES = ('1980', '1981', '1982')
GENDER_CHOICES = (('m', 'Male'), ('f', 'Female'))
FAVOURITE_COLORS_CHOICES = (('blue', 'Blue'),
FAVORITE_COLORS_CHOICES = (('blue', 'Blue'),
('green', 'Green'),
('black', 'Black'))

class SimpleForm(forms.Form):
birth_year = DateField(widget=SelectDateWidget(years=YEAR_CHOICES))
gender = ChoiceField(widget=RadioSelect, choices=RADIO_CHOICES)
favourite_colors = forms.MultipleChoiceField(required=False,
widget=CheckboxSelectMultiple, choices=CHECKBOX_CHOICES)
birth_year = DateField(widget=SelectDateWidget(years=BIRTH_YEAR_CHOICES))
gender = ChoiceField(widget=RadioSelect, choices=GENDER_CHOICES)
favorite_colors = forms.MultipleChoiceField(required=False,
widget=CheckboxSelectMultiple, choices=FAVORITE_COLORS_CHOICES)

See the :ref:`built-in widgets` for more information about which widgets
are available and which arguments they accept.
Expand Down

0 comments on commit 40c8a60

Please sign in to comment.