diff options
author | Akshen | 2017-09-06 14:43:06 +0530 |
---|---|---|
committer | GitHub | 2017-09-06 14:43:06 +0530 |
commit | 9991c9343f157ac23cf87c4c1cd371b8b21865b7 (patch) | |
tree | 691c83bf1566a01469124558d523c336ac1bbb8b /workshop_app/models.py | |
parent | 021b3b64d70eb4b9bc4024fbfa5a2cb286d87043 (diff) | |
parent | ebebc30a5ab8328c2330f0c03302ef7db8715365 (diff) | |
download | workshop_booking-9991c9343f157ac23cf87c4c1cd371b8b21865b7.tar.gz workshop_booking-9991c9343f157ac23cf87c4c1cd371b8b21865b7.tar.bz2 workshop_booking-9991c9343f157ac23cf87c4c1cd371b8b21865b7.zip |
Merge pull request #20 from Akshen/develop
Develop
Diffstat (limited to 'workshop_app/models.py')
-rw-r--r-- | workshop_app/models.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/workshop_app/models.py b/workshop_app/models.py index b3ca1fc..408b36a 100644 --- a/workshop_app/models.py +++ b/workshop_app/models.py @@ -24,6 +24,27 @@ department_choices = ( ("others", "Others"), ) +title = ( + ("Professor", "Prof."), + ("Doctor", "Dr."), + ("Shriman", "Shri"), + ("Shrimati", "Smt"), + ("Kumari", "Ku"), + ("Mr", "Mr."), + ("Mrs", "Mrs."), + ("Miss", "Ms."), + ("other", "Other"), + ) + +source = ( + ("FOSSEE Email", "FOSSEE Email"), + ("FOSSEE website", "FOSSEE website"), + ("Google", "Google"), + ("Social Media", "Social Media"), + ("From other College", "From other College"), + ("Others", "Others"), + ) + def has_profile(user): """ check if user has profile """ @@ -36,6 +57,7 @@ class Profile(models.Model): """Profile for users(instructors and coordinators)""" user = models.OneToOneField(User) + title = models.CharField(max_length=32,blank=True, choices=title) institute = models.CharField(max_length=150) department = models.CharField(max_length=150, choices=department_choices) phone_number = models.CharField( @@ -52,6 +74,8 @@ class Profile(models.Model): help_text='Select Coordinator if you want to organise a workshop\ in your college/school. <br> Select Instructor if you want to conduct\ a workshop.') + source = models.CharField(max_length=255, blank=True,choices=source) + location = models.CharField(max_length=255,blank=True, help_text="Place/City") is_email_verified = models.BooleanField(default=False) activation_key = models.CharField(max_length=255, blank=True, null=True) key_expiry_time = models.DateTimeField(blank=True, null=True) |