Add verbose_name to Candidate.handicap

This commit is contained in:
Claude Paroz 2018-04-23 14:53:32 +02:00
parent 9db8dac63d
commit 8da961fdc5
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ class Candidate(models.Model):
mobile = models.CharField('Portable', max_length=40, blank=True)
email = models.EmailField('Courriel', blank=True)
avs = models.CharField('No AVS', max_length=15, blank=True)
handicap = models.BooleanField(default=False)
handicap = models.BooleanField('Handicap/besoins part.', default=False)
section = models.CharField('Filière', max_length=10, choices=SECTION_CHOICES)
option = models.CharField('Option', max_length=20, choices=OPTION_CHOICES, blank=True)