sdi/models.py
branchanoop
changeset 29 8bee50ee3504
parent 19 3932d9426c44
child 34 514db83586f5
--- a/sdi/models.py	Thu Jun 03 19:08:31 2010 +0530
+++ b/sdi/models.py	Thu Jun 03 19:56:07 2010 +0530
@@ -4,18 +4,18 @@
                   ("F", "Female"),
                  )
 
-PYTHON_KNOWLEDGE_CHOICES = (("5", "Written production level code in Python"),
-                            ("4", "Been using Python for quite some time"),
+PYTHON_KNOWLEDGE_CHOICES = (("1", "No clue what Python is"),
+                            ("2", "I know for sure that Python is a language"),
                             ("3", "Solved some basic problems using Python"),
-                            ("2", "I know for sure that Python is a language"),
-                            ("1", "No clue what Python is"),
+                            ("4", "Been using Python for quite some time"),
+                            ("5", "Written production level code in Python"),
                            )
 
-SAGE_KNOWLEDGE_CHOICES = (("5", "Written production level code in Sage"),
-                          ("4", "Been using Sage for quite some time"),
+SAGE_KNOWLEDGE_CHOICES = (("1", "No clue what Sage is"),
+                          ("2", "I know for sure that Sage is a language"),
                           ("3", "Solved some basic problems using Sage"),
-                          ("2", "I know for sure that Sage is a language"),
-                          ("1", "No clue what Sage is"),
+                          ("4", "Been using Sage for quite some time"),
+                          ("5", "Written production level code in Sage"),
                          )
 
 TOPICS_CHOICES = (("1", "Topic 1"),