Fix date input

This commit is contained in:
Ludovic Stephan 2020-07-26 22:34:56 +02:00
parent f990934425
commit 422e2f7b42

View file

@ -33,3 +33,4 @@ class ProfileForm(forms.ModelForm):
class Meta:
model = BDSProfile
exclude = ["user"]
widgets = {"birthdate": forms.DateInput(attrs={"type": "date"})}