I am rendering a datepicker within a Django Form. The answer may apply more to JS and HTML, but I'm being specific.
date_field= forms.DateField(
input_formats=['%Y-%m-%d'],
widget=forms.DateInput(
format='%Y-%m-%d',
attrs={'type': 'date'}
)
)
This renders my form and all, but unfortunately, the datepicker display field itself conforms to my US locale:
Is it possible to preset the default display to something like 2020-11-13?
