13 lines
282 B
Python
Raw Normal View History

2023-07-28 23:27:12 +02:00
from django import forms
from medwings.models import Profile
class ProfileForm(forms.ModelForm):
class Meta:
model = Profile
fields = ['date_of_birth', 'sex']
widgets = {
'date_of_birth': forms.DateInput(attrs={'type': 'date'}),
}