From dd6663889c8709e09542a6fd0ddcb6709a607d57 Mon Sep 17 00:00:00 2001 From: django Date: Wed, 28 Nov 2012 13:37:38 +0100 Subject: [PATCH] add fax and company field to Auditor --- teleforma/models/pro.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 + -- 2.39.5