shcool / students /forms.py
CORVO-AI's picture
Upload 111 files
b7f55e1 verified
Raw
History Blame Contribute Delete
466 Bytes
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}),
}