added blank in topics_interested field in models
authornishanth
Sat, 29 May 2010 11:41:52 +0530
changeset 18 7d587311a4b5
parent 17 ee98a9b44ef9
child 19 3932d9426c44
added blank in topics_interested field in models
sdi/models.py
--- a/sdi/models.py	Sat May 29 10:35:45 2010 +0530
+++ b/sdi/models.py	Sat May 29 11:41:52 2010 +0530
@@ -37,7 +37,7 @@
     profession = models.CharField(max_length=20)
     affiliated_to = models.CharField(max_length=30)
 
-    topics_interested = models.CharField(max_length=30)
+    topics_interested = models.CharField(max_length=30, blank=True)
 
     knowledge_of_python = models.CharField(max_length=1, choices=PYTHON_KNOWLEDGE_CHOICES)
     need_for_python_workshop = models.BooleanField(verbose_name="Do you need a workshop on Python before you attend Sage Days")