From 8aa4180f199cf5f1a5fba7e136c42f0ac4124dbb Mon Sep 17 00:00:00 2001 From: Primal Pappachan Date: Wed, 21 Mar 2012 13:40:31 +0530 Subject: Added secondary email and phone number to Profile --- allotter/models.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/allotter/models.py b/allotter/models.py index 77f0849..25d3f44 100644 --- a/allotter/models.py +++ b/allotter/models.py @@ -120,6 +120,12 @@ class Profile(models.Model): #Used for verification purposes dob = models.DateField(verbose_name=u"Date of Birth", help_text=u"Date of birth as given in the application") + + secondary_email = models.EmailField(verbose_name=u"Secondary Email", + help_text=u"Email address read from user after authentication") + + phone_number = models.IntegerField(max_length=10, verbose_name="Phone Number", + help_text=u"Phone number read from user after authentication") #Application for the Profile application = models.ForeignKey(Application) -- cgit