Django DateField Empty
forms.DateField(
required=False,
widget=forms.DateInput(format='%Y-%m-%d', attrs=dict(
type='date',
)),
)
if not using format='%Y-%m-%d'
your date might be formatted according to your locale and the <input type="date">
will appear as if it has no value.