Add CorpContact.archived field

This commit is contained in:
Claude Paroz 2016-01-18 12:55:57 +01:00
parent 73e3680da0
commit 7d45cd0047
4 changed files with 25 additions and 5 deletions

View file

@ -152,6 +152,7 @@ class CorpContact(models.Model):
role = models.CharField(max_length=40, verbose_name='Fonction', blank=True)
tel = models.CharField(max_length=20, blank=True, verbose_name='Téléphone')
email = models.CharField(max_length=100, blank=True, verbose_name='Courriel')
archived = models.BooleanField(default=False, verbose_name='Archivé')
sections = models.ManyToManyField(Section, blank=True)
class Meta: