salutation = models.CharField(max_length=128, null = True, blank = True)
nom = models.CharField(max_length=255)
prenom = models.CharField(max_length=128, verbose_name = 'Prénom')
- courriel = models.CharField(max_length=128, blank = True)
+ courriel = models.CharField(max_length=128)
fonction = models.CharField(max_length=128, null = True, blank = True)
sousfonction = models.CharField(max_length=128, null = True, blank = True,
verbose_name = 'Sous-fonction')