# HG changeset patch # User nishanth # Date 1279101523 -19800 # Node ID 736b2945037f4c47eb0c14ec37f53013007fa7f0 # Parent 408f2bee9abb763cd9173a916ee43b2db24d5a11 fixed a typo diff -r 408f2bee9abb -r 736b2945037f sdi/models.py --- a/sdi/models.py Wed Jul 14 15:27:33 2010 +0530 +++ b/sdi/models.py Wed Jul 14 15:28:43 2010 +0530 @@ -109,7 +109,7 @@ registrant = models.ForeignKey(Registrant) status_of_attending_sagedays = models.CharField(max_length=1, default="0", choices=EVENT_ATTEND_CHOICES) - status_of_attending_workshop = models.Charfield(max_length=1, default="0", choices=WORKSHOP_ATTEND_CHOICES) + status_of_attending_workshop = models.CharField(max_length=1, default="0", choices=WORKSHOP_ATTEND_CHOICES) status_of_accomodation = models.CharField(max_length=1, default="0", choices=ACCO_CHOICES) has_laptop_for_workshop = models.BooleanField(default=False)