diff options
Diffstat (limited to 'archaeological_files/models.py')
-rw-r--r-- | archaeological_files/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_files/models.py b/archaeological_files/models.py index 41ff19ca3..a01a6f99e 100644 --- a/archaeological_files/models.py +++ b/archaeological_files/models.py @@ -134,10 +134,10 @@ class File(BaseHistorizedItem, OwnPerms, ValueGetter, ShortMenuItem, blank=True, null=True) instruction_deadline = models.DateField(_(u'Instruction deadline'), blank=True, null=True) - total_surface = models.IntegerField(_(u"Total surface (m²)"), + total_surface = models.IntegerField(_(u"Total surface (m2)"), blank=True, null=True) total_developed_surface = models.IntegerField( - _(u"Total developed surface (m²)"), blank=True, null=True) + _(u"Total developed surface (m2)"), blank=True, null=True) locality = models.CharField(_(u"Locality"), max_length=100, null=True, blank=True) address = models.TextField(_(u"Main address"), null=True, blank=True) |