From 1f14c53f78813b7fdb863e77f54de481a0905f8d Mon Sep 17 00:00:00 2001 From: Tom Price Date: Thu, 27 Aug 2015 22:46:50 +0100 Subject: [PATCH] Remove implicit fields as these are not needed in the form definition. Passes all tests. --- RIGS/forms.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/RIGS/forms.py b/RIGS/forms.py index 0f019d18..d3dfb39e 100644 --- a/RIGS/forms.py +++ b/RIGS/forms.py @@ -12,10 +12,6 @@ from RIGS import models #Registration class ProfileRegistrationFormUniqueEmail(RegistrationFormUniqueEmail): - first_name = forms.CharField(required=False, max_length=50) - last_name = forms.CharField(required=False, max_length=50) - initials = forms.CharField(required=True, max_length=5) - phone = forms.CharField(required=False, max_length=13) captcha = ReCaptchaField() class Meta: