#how to change the format of forms.DateField
3 messages · Page 1 of 1 (latest)
is it just about the display?
If so, you just have to format the field in the format accordingly:
my_date = forms.DateField(widget=forms.DateInput(format='%Y-%m-%d'))
How do i get the date selector widget with this ?