sdi/models.py
branchanoop
changeset 29 8bee50ee3504
parent 19 3932d9426c44
child 34 514db83586f5
equal deleted inserted replaced
27:48a86d8956f7 29:8bee50ee3504
     2 
     2 
     3 GENDER_CHOICES = (('M', "Male"),
     3 GENDER_CHOICES = (('M', "Male"),
     4                   ("F", "Female"),
     4                   ("F", "Female"),
     5                  )
     5                  )
     6 
     6 
     7 PYTHON_KNOWLEDGE_CHOICES = (("5", "Written production level code in Python"),
     7 PYTHON_KNOWLEDGE_CHOICES = (("1", "No clue what Python is"),
       
     8                             ("2", "I know for sure that Python is a language"),
       
     9                             ("3", "Solved some basic problems using Python"),
     8                             ("4", "Been using Python for quite some time"),
    10                             ("4", "Been using Python for quite some time"),
     9                             ("3", "Solved some basic problems using Python"),
    11                             ("5", "Written production level code in Python"),
    10                             ("2", "I know for sure that Python is a language"),
       
    11                             ("1", "No clue what Python is"),
       
    12                            )
    12                            )
    13 
    13 
    14 SAGE_KNOWLEDGE_CHOICES = (("5", "Written production level code in Sage"),
    14 SAGE_KNOWLEDGE_CHOICES = (("1", "No clue what Sage is"),
       
    15                           ("2", "I know for sure that Sage is a language"),
       
    16                           ("3", "Solved some basic problems using Sage"),
    15                           ("4", "Been using Sage for quite some time"),
    17                           ("4", "Been using Sage for quite some time"),
    16                           ("3", "Solved some basic problems using Sage"),
    18                           ("5", "Written production level code in Sage"),
    17                           ("2", "I know for sure that Sage is a language"),
       
    18                           ("1", "No clue what Sage is"),
       
    19                          )
    19                          )
    20 
    20 
    21 TOPICS_CHOICES = (("1", "Topic 1"),
    21 TOPICS_CHOICES = (("1", "Topic 1"),
    22                   ("2", "Topic 2"),
    22                   ("2", "Topic 2"),
    23                   ("3", "Topic 3"),
    23                   ("3", "Topic 3"),