diff --git a/recruitment/forms.py b/recruitment/forms.py index e8696de..c86f586 100644 --- a/recruitment/forms.py +++ b/recruitment/forms.py @@ -318,13 +318,15 @@ class PersonForm(forms.ModelForm): pass return email.strip() + def clean_gpa(self): + gpa=self.cleaned_data.get('gpa') + pass - return email class ApplicationForm(forms.ModelForm):