File size: 466 Bytes
b7f55e1 | 1 2 3 4 5 6 7 8 9 10 11 12 | from django import forms
from .models import Student
class StudentForm(forms.ModelForm):
class Meta:
model = Student
fields = ['first_name', 'last_name', 'student_id', 'email', 'phone',
'date_of_birth', 'gender', 'address', 'school_class', 'status', 'photo']
widgets = {
'date_of_birth': forms.DateInput(attrs={'type': 'date'}),
'address': forms.Textarea(attrs={'rows': 3}),
} |