mirror of
https://github.com/django/django.git
synced 2025-04-06 06:26:41 +00:00
Fixed #24956 -- Fixed typo in docs/ref/forms/widgets.txt
This commit is contained in:
parent
1e82094f1b
commit
9f825b9e28
@ -813,8 +813,11 @@ Composite widgets
|
||||
field1 = forms.DateField(widget=SelectDateWidget(empty_label="Nothing"))
|
||||
|
||||
# A custom empty label with tuple
|
||||
field1 = forms.DateField(widget=SelectDateWidget(
|
||||
empty_label=("Choose Year", "Choose Month", "Choose Day"))
|
||||
field1 = forms.DateField(
|
||||
widget=SelectDateWidget(
|
||||
empty_label=("Choose Year", "Choose Month", "Choose Day"),
|
||||
),
|
||||
)
|
||||
|
||||
.. versionchanged:: 1.9
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user