30
As @bruno as mentioned in his answer, input_formats
is a forms field, however it can be used to control the date format saved from the model.
In settings.py
set DATE_INPUT_FORMATS
as below:
DATE_INPUT_FORMATS = ['%d-%m-%Y']
And in your form you could do something like below:
class ClientDetailsForm(ModelForm):
date_of_birth = DateField(input_formats=settings.DATE_INPUT_FORMATS)
class Meta:
model = ModelA
30
input_formats
is a forms.DateField
option, not a model.DateField
option. You have to set it in your form, not in your models.
- [Django]-When should you use django-admin.py versus manage.py?
- [Django]-Using Django Managers vs. staticmethod on Model class directly
- [Django]-Django settings per application β best practice?
2
You could also use the LANGUAGE_CODE to get the correct date formate for the local.
LANGUAGE_CODE ='en-GB'
Then have DATE_INPUT_FORMATS = ['%d-%m-%Y', '%Y-%m-%d']
in the settings.py
which can be called when needed at anytime.
date_birth = forms.DateField(label='Date of birth', widget=forms.SelectDateWidget(years=YEAR_CHOICES, input_formats= DATE_INPUT_FORMATS))
- [Django]-Adding model-wide help text to a django model's admin form
- [Django]-Add class to Django label_tag() output
- [Django]-Django β No such table: main.auth_user__old
1
In settings.py, insert:
USE_L10N = False
DATE_INPUT_FORMATS = ['%d/%m/%Y']
- DATE_INPUT_FORMATSβs data type must be a list, containing the format as a string.
- %d/%m/%Y is just my format of choice.
As of lately(jan 2022), settings.py does not contain USE_L10N
by default (neither DATE_INPUT_FORMATS
, but this one is expected not the be there, I guess).
It seems like, although USE_L10N
isnβt there by default, not only it does exists somewhere but itβs also set to True, because setting up DATE_INPUT_FORMATS
alone (i.e. without making USE_L10N
explicitly False) will not do the trick.
- [Django]-Cannot resolve 'django.utils.log.NullHandler' in Django 1.9+
- [Django]-Get object by field other than primary key
- [Django]-Django admin β make all fields readonly
0
For those of you who watch this in 2023!!!
To make this work I just added:
DATE_INPUT_FORMATS = ["%d.%m.%Y"]
USE_L10N = False
in my settings.py and it worked. I now can input 20.12.2020 in my form.
My form is auto generated from models.Model class
- [Django]-Checking for empty queryset in Django
- [Django]-What is the difference render() and redirect() in Django?
- [Django]-Bypass confirmation prompt for pip uninstall