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 | fd075332a121d7012528aad9fb5623753beec425 (patch) | |
tree | 31622f4050a7fd91443b42545265972e23ee85de /archaeological_files/models.py | |
parent | 567a5a9bd91b0cc01f102126c0929ecece8af2dd (diff) | |
parent | f7fc78c06ce15b9562058bd7c9f697431b258c77 (diff) | |
download | Ishtar-fd075332a121d7012528aad9fb5623753beec425.tar.bz2 Ishtar-fd075332a121d7012528aad9fb5623753beec425.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) |