sdi/models.py
author nishanth
Wed, 14 Jul 2010 11:15:44 +0530
branchanoop
changeset 78 e84f56d4968e
parent 74 84179d1bdc7e
child 81 8218d96eb765
permissions -rw-r--r--
added __unicode__ to the model
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"),
74
84179d1bdc7e changed descriptions about sage.
anoop
parents: 49
diff changeset
    15
                          ("2", "I know for sure that Sage is a mathematical software"),
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"),
74
84179d1bdc7e changed descriptions about sage.
anoop
parents: 49
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
49
eccfa73e136b added t-shirt size into models.
anoop
parents: 45
diff changeset
    39
T_SHIRT_CHOICES = (("S","S"),
eccfa73e136b added t-shirt size into models.
anoop
parents: 45
diff changeset
    40
                   ("M","M"),
eccfa73e136b added t-shirt size into models.
anoop
parents: 45
diff changeset
    41
                   ("L","L"),
eccfa73e136b added t-shirt size into models.
anoop
parents: 45
diff changeset
    42
                   ("XL","XL"),                   
eccfa73e136b added t-shirt size into models.
anoop
parents: 45
diff changeset
    43
                  )
eccfa73e136b added t-shirt size into models.
anoop
parents: 45
diff changeset
    44
4
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    45
class Registrant(models.Model):
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    46
    """ A model to hold the details of registered users.
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    47
    """
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    48
6
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    49
    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
    50
    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
    51
    email = models.EmailField()
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    52
    gender = models.CharField(max_length=1, choices=GENDER_CHOICES)
49
eccfa73e136b added t-shirt size into models.
anoop
parents: 45
diff changeset
    53
    t_shirt_size = models.CharField(max_length=2, choices=T_SHIRT_CHOICES, verbose_name="T-Shirt size")
6
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    54
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    55
    profession = models.CharField(max_length=20)
19
3932d9426c44 added the topics field in register form
nishanth
parents: 18
diff changeset
    56
    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
    57
18
7d587311a4b5 added blank in topics_interested field in models
nishanth
parents: 15
diff changeset
    58
    topics_interested = models.CharField(max_length=30, blank=True)
4
ac7eaa878437 created app named sdi which means Sage Days India
nishanth
parents:
diff changeset
    59
6
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    60
    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
    61
    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
    62
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    63
    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
    64
    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
    65
19
3932d9426c44 added the topics field in register form
nishanth
parents: 18
diff changeset
    66
    #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
    67
    address = models.TextField(blank=True)
15
1c2d2e702aee completed the register view
nishanth
parents: 12
diff changeset
    68
    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
    69
    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
    70
45
29d7d70c9273 added new fields to registrant.
nishanth
parents: 34
diff changeset
    71
    priority_for_attending = models.CharField(max_length=1, default="3")
29d7d70c9273 added new fields to registrant.
nishanth
parents: 34
diff changeset
    72
    selected_for_attending = models.BooleanField(default=False)
29d7d70c9273 added new fields to registrant.
nishanth
parents: 34
diff changeset
    73
    
6
3b3c5f11af8e removed the required=True and added blank=True where it is required in models.py
nishanth
parents: 5
diff changeset
    74
    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
    75
78
e84f56d4968e added __unicode__ to the model
nishanth
parents: 74
diff changeset
    76
    def __unicode__(self):
e84f56d4968e added __unicode__ to the model
nishanth
parents: 74
diff changeset
    77
e84f56d4968e added __unicode__ to the model
nishanth
parents: 74
diff changeset
    78
        return self.first_name + " " + self.last_name