I am trying to implement a datepicker in a user profile page, but it is not presenting the datepicker when I click on the textfield. Any thoughts?
class ProfileForm(forms.ModelForm):
class Meta:
model = Profile
fields = ('birth_date', )
widgets = {
'birth_date': forms.DateInput(attrs={'class': 'form-control'}),
}