class PromiseForm(ModelForm): class Meta: model = Promise fields = ['title', 'description', 'made_on'] widgets = { 'made_on': DateInput(attrs={'type': 'date'}), }