init
This commit is contained in:
7
student/forms.py
Normal file
7
student/forms.py
Normal file
@ -0,0 +1,7 @@
|
||||
from django import forms
|
||||
from .models import Student
|
||||
|
||||
class StudentProfileForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = Student
|
||||
fields = ['medical_certificate', 'driving_license_number']
|
Reference in New Issue
Block a user