diff options
author | Akshen | 2017-09-20 15:17:28 +0530 |
---|---|---|
committer | Akshen | 2017-09-20 15:17:28 +0530 |
commit | 71b2b649629de30ef133ce2dd9c8e855abe66a31 (patch) | |
tree | efa3a7c6efde3f2eb3e6ddac28cffee50cfbc644 /workshop_app/models.py | |
parent | 01eafa2acd049473bfb21a4db8793cfacc4d09b7 (diff) | |
download | workshop_booking-71b2b649629de30ef133ce2dd9c8e855abe66a31.tar.gz workshop_booking-71b2b649629de30ef133ce2dd9c8e855abe66a31.tar.bz2 workshop_booking-71b2b649629de30ef133ce2dd9c8e855abe66a31.zip |
Fixes State Field Bug
- State field bug in registration form fixed
- Test cases updated for the same
- my_workshops page titles changed
Diffstat (limited to 'workshop_app/models.py')
-rw-r--r-- | workshop_app/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/workshop_app/models.py b/workshop_app/models.py index 4bf4489..94b9f92 100644 --- a/workshop_app/models.py +++ b/workshop_app/models.py @@ -112,7 +112,7 @@ 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) + how_did_you_hear_about_us = models.CharField(max_length=255, blank=True,choices=source) location = models.CharField(max_length=255,blank=True, help_text="Place/City") state = models.CharField(max_length=255, choices=states, default="IN-MH") is_email_verified = models.BooleanField(default=False) |