From: django Date: Wed, 28 Nov 2012 12:37:38 +0000 (+0100) Subject: add fax and company field to Auditor X-Git-Tag: 0.9-probarreau~260^2~2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=dd6663889c8709e09542a6fd0ddcb6709a607d57;p=teleforma.git add fax and company field to Auditor --- diff --git a/teleforma/models/pro.py b/teleforma/models/pro.py index 1b18fe83..6678ba33 100644 --- a/teleforma/models/pro.py +++ b/teleforma/models/pro.py @@ -239,12 +239,14 @@ class Auditor(models.Model): blank=True, null=True) platform_only = models.BooleanField(_('platform only')) + company = models.CharField(_('Company'), max_length=255, blank=True) address = models.TextField(_('Address'), blank=True) postal_code = models.CharField(_('Postal code'), max_length=255, blank=True) city = models.CharField(_('City'), max_length=255, blank=True) country = models.CharField(_('Country'), max_length=255, blank=True) language = models.CharField(_('Language'), max_length=255, blank=True) telephone = models.CharField(_('Telephone'), max_length=255, blank=True) + fax = models.CharField(_('Fax'), max_length=255, blank=True) expiration_date = models.DateField(_('Expiration_date'), blank=True, null=True) init_password = models.BooleanField(_('Password initialized')) @@ -277,4 +279,4 @@ class SeminarRevision(models.Model): return ' '.join([seminar.title, user.last_name, str(date)]) - \ No newline at end of file +