sdi/models.py
branchanoop
changeset 45 29d7d70c9273
parent 34 514db83586f5
child 49 eccfa73e136b
--- a/sdi/models.py	Sat Jun 05 18:07:11 2010 +0530
+++ b/sdi/models.py	Sat Jun 05 18:18:34 2010 +0530
@@ -59,6 +59,10 @@
     #address = models.TextField(help_text="To send DVD containing tutorials on Python if required.", blank=True)
     address = models.TextField(blank=True)
     phone_num = models.CharField(max_length=15, verbose_name="Phone Number", blank=True)
+    acco_required = models.BooleanField(verbose_name="Need accomodation", default=False)
 
+    priority_for_attending = models.CharField(max_length=1, default="3")
+    selected_for_attending = models.BooleanField(default=False)
+    
     likeliness_of_attending = models.CharField(max_length=1, choices=LIKELINESS_CHOICES)