DEFAULT_DATE_INPUT_FORMATS is on the deprecation timeline, just FYI.

The formatting options are for the way data can be input into a form object. 
Django always stores dates the same way (per database backend).

Are you using Django with an already-existing database full of data?

Also, your code shows you using a forms.DateField instead of a 
models.DateField. I wouldn't even think that could work.

Do you know that the formats you choose for the forms.ModelForm is irrelevant 
to the way the data is stored in the database? 

Please let us know whether you're trying to get old (pre-Django) data to work 
with Django, or new (created by Django) data to be displayed in a specific 
format in your Django application.

Shawn

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to