pytask/profile/models.py
changeset 444 92062f38d2c0
parent 440 56ea209e559f
child 463 c7c595c0bed3
equal deleted inserted replaced
443:a13ea00c1a3f 444:92062f38d2c0
    30       max_length=50, verbose_name="Name as on bank account",
    30       max_length=50, verbose_name="Name as on bank account",
    31       help_text="Any DD/Cheque will be issued on this name")
    31       help_text="Any DD/Cheque will be issued on this name")
    32 
    32 
    33     user = models.ForeignKey(User, unique = True)
    33     user = models.ForeignKey(User, unique = True)
    34 
    34 
    35     role = models.CharField(max_length=2,
    35     role = models.CharField(max_length=255,
    36                               choices=ROLES_CHOICES,
    36                             choices=ROLES_CHOICES,
    37                               default=u"Contributor")
    37                             default=u"Contributor")
    38 
    38 
    39     pynts = models.PositiveSmallIntegerField(default=0)
    39     pynts = models.PositiveSmallIntegerField(default=0)
    40 
    40 
    41     aboutme = models.TextField(
    41     aboutme = models.TextField(
    42       blank = True,
    42       blank = True,