diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-12 12:09:41 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-12 12:09:41 +0200 |
commit | 6e89d666ffcadd6dda441c0381d09377227dbc38 (patch) | |
tree | 31622f4050a7fd91443b42545265972e23ee85de /archaeological_files/models.py | |
parent | 4ad9278e67d8fb024c685df03812c2e1d8313aa1 (diff) | |
parent | f0b43bb86aea222f00afca37a97407aca0b7e867 (diff) | |
download | Ishtar-6e89d666ffcadd6dda441c0381d09377227dbc38.tar.bz2 Ishtar-6e89d666ffcadd6dda441c0381d09377227dbc38.zip |
Merge branch 'master-pdl'
Diffstat (limited to 'archaeological_files/models.py')
-rw-r--r-- | archaeological_files/models.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_files/models.py b/archaeological_files/models.py index aafa7d986..9709824df 100644 --- a/archaeological_files/models.py +++ b/archaeological_files/models.py @@ -135,9 +135,9 @@ class File(BaseHistorizedItem, OwnPerms, ValueGetter, ShortMenuItem, verbose_name=u"Type de saisine") instruction_deadline = models.DateField(_(u'Instruction deadline'), blank=True, null=True) - total_surface = models.IntegerField(_(u"Total surface (m2)"), - blank=True, null=True) - total_developed_surface = models.IntegerField( + total_surface = models.FloatField(_(u"Total surface (m2)"), + blank=True, null=True) + total_developed_surface = models.FloatField( _(u"Total developed surface (m2)"), blank=True, null=True) locality = models.CharField(_(u"Locality"), max_length=100, null=True, blank=True) |