sdi/models.py
author nishanth
Sat, 05 Jun 2010 18:18:34 +0530
branchanoop
changeset 45 29d7d70c9273
parent 34 514db83586f5
child 49 eccfa73e136b
permissions -rw-r--r--
added new fields to registrant.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
     1
from django.db import models
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
     2
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
     3
GENDER_CHOICES = (('M', "Male"),
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
     4
                  ("F", "Female"),
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
     5
                 )
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
     6
29
8bee50ee3504 changed order of preferences in sdi/models.py.
anoop
parents: 19
diff changeset
     7
PYTHON_KNOWLEDGE_CHOICES = (("1", "No clue what Python is"),
8bee50ee3504 changed order of preferences in sdi/models.py.
anoop
parents: 19
diff changeset
     8
                            ("2", "I know for sure that Python is a language"),
5
6c4b3796a608 created models in sdi app
nishanth
parents: 4
diff changeset
     9
                            ("3", "Solved some basic problems using Python"),
29
8bee50ee3504 changed order of preferences in sdi/models.py.
anoop
parents: 19
diff changeset
    10
                            ("4", "Been using Python for quite some time"),
8bee50ee3504 changed order of preferences in sdi/models.py.
anoop
parents: 19
diff changeset
    11
                            ("5", "Written production level code in Python"),
5
6c4b3796a608 created models in sdi app
nishanth
parents: 4
diff changeset
    12
                           )
6c4b3796a608 created models in sdi app
nishanth
parents: 4
diff changeset
    13
29
8bee50ee3504 changed order of preferences in sdi/models.py.
anoop
parents: 19
diff changeset
    14
SAGE_KNOWLEDGE_CHOICES = (("1", "No clue what Sage is"),
8bee50ee3504 changed order of preferences in sdi/models.py.
anoop
parents: 19
diff changeset
    15
                          ("2", "I know for sure that Sage is a language"),
5
6c4b3796a608 created models in sdi app
nishanth
parents: 4
diff changeset
    16
                          ("3", "Solved some basic problems using Sage"),
29
8bee50ee3504 changed order of preferences in sdi/models.py.
anoop
parents: 19
diff changeset
    17
                          ("4", "Been using Sage for quite some time"),
8bee50ee3504 changed order of preferences in sdi/models.py.
anoop
parents: 19
diff changeset
    18
                          ("5", "Written production level code in Sage"),
5
6c4b3796a608 created models in sdi app
nishanth
parents: 4
diff changeset
    19
                         )
6c4b3796a608 created models in sdi app
nishanth
parents: 4
diff changeset
    20
34
514db83586f5 changed the topics choices.
anoop
parents: 29
diff changeset
    21
TOPICS_CHOICES = (("1", "Cryptography"),
514db83586f5 changed the topics choices.
anoop
parents: 29
diff changeset
    22
                  ("2", "Basic Algebra"),
514db83586f5 changed the topics choices.
anoop
parents: 29
diff changeset
    23
                  ("3", "Calculus"),
514db83586f5 changed the topics choices.
anoop
parents: 29
diff changeset
    24
                  ("4", "Arbitrary Precision Numerics"),
514db83586f5 changed the topics choices.
anoop
parents: 29
diff changeset
    25
                  ("5", "Basic Plotting"),
514db83586f5 changed the topics choices.
anoop
parents: 29
diff changeset
    26
                  ("6", "Number Theory"),
514db83586f5 changed the topics choices.
anoop
parents: 29
diff changeset
    27
                  ("7", "Polynomials"),
514db83586f5 changed the topics choices.
anoop
parents: 29
diff changeset
    28
                  ("8", "Combinatorics and Graph Theory"),                                          
19
3932d9426c44 added the topics field in register form
nishanth
parents: 18
diff changeset
    29
                 )
3932d9426c44 added the topics field in register form
nishanth
parents: 18
diff changeset
    30
34
514db83586f5 changed the topics choices.
anoop
parents: 29
diff changeset
    31
4
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    32
LIKELINESS_CHOICES = (('5', "Will attend at any cost"),
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    33
                      ('4', "Will attend most probably"),
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    34
                      ('3', "Unsure of attending"),
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    35
                      ('2', "Might not attend"),
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    36
                      ('1', "Will not attend"),
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    37
                     )
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    38
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    39
class Registrant(models.Model):
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    40
    """ A model to hold the details of registered users.
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    41
    """
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    42
6
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    43
    first_name = models.CharField(max_length=30)
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    44
    last_name =  models.CharField(max_length=30)
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    45
    email = models.EmailField()
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    46
    gender = models.CharField(max_length=1, choices=GENDER_CHOICES)
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    47
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    48
    profession = models.CharField(max_length=20)
19
3932d9426c44 added the topics field in register form
nishanth
parents: 18
diff changeset
    49
    affiliated_to = models.CharField(max_length=30, verbose_name="Affiliated Institution/Company")
4
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    50
18
7d587311a4b5 added blank in topics_interested field in models
nishanth
parents: 15
diff changeset
    51
    topics_interested = models.CharField(max_length=30, blank=True)
4
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    52
6
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    53
    knowledge_of_python = models.CharField(max_length=1, choices=PYTHON_KNOWLEDGE_CHOICES)
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    54
    need_for_python_workshop = models.BooleanField(verbose_name="Do you need a workshop on Python before you attend Sage Days")
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    55
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    56
    knowledge_of_sage = models.CharField(max_length=1, choices=SAGE_KNOWLEDGE_CHOICES)
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    57
    tools_used = models.TextField(help_text="Ex: Scilab, Mathematica, Matlab etc.", verbose_name="Other tools used", blank=True)
4
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    58
19
3932d9426c44 added the topics field in register form
nishanth
parents: 18
diff changeset
    59
    #address = models.TextField(help_text="To send DVD containing tutorials on Python if required.", blank=True)
3932d9426c44 added the topics field in register form
nishanth
parents: 18
diff changeset
    60
    address = models.TextField(blank=True)
15
1c2d2e702aee completed the register view
nishanth
parents: 12
diff changeset
    61
    phone_num = models.CharField(max_length=15, verbose_name="Phone Number", blank=True)
45
29d7d70c9273 added new fields to registrant.
nishanth
parents: 34
diff changeset
    62
    acco_required = models.BooleanField(verbose_name="Need accomodation", default=False)
4
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    63
45
29d7d70c9273 added new fields to registrant.
nishanth
parents: 34
diff changeset
    64
    priority_for_attending = models.CharField(max_length=1, default="3")
29d7d70c9273 added new fields to registrant.
nishanth
parents: 34
diff changeset
    65
    selected_for_attending = models.BooleanField(default=False)
29d7d70c9273 added new fields to registrant.
nishanth
parents: 34
diff changeset
    66
    
6
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    67
    likeliness_of_attending = models.CharField(max_length=1, choices=LIKELINESS_CHOICES)
4
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    68