Add CorpContact.archived field
This commit is contained in:
parent
73e3680da0
commit
7d45cd0047
4 changed files with 25 additions and 5 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue