]> git.parisson.com Git - teleforma.git/commitdiff
add fax and company field to Auditor
authordjango <django@probarreau.pilotsystems.net>
Wed, 28 Nov 2012 12:37:38 +0000 (13:37 +0100)
committerdjango <django@probarreau.pilotsystems.net>
Wed, 28 Nov 2012 12:37:38 +0000 (13:37 +0100)
teleforma/models/pro.py

index 1b18fe834519969f75423571e12589dc4826738d..6678ba33c6fb34caf5455a29c78142df79a301c4 100644 (file)
@@ -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
+