summaryrefslogtreecommitdiff
path: root/archaeological_context_records/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2021-03-26 15:12:31 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-03-26 15:12:31 +0100
commit921174babfd04f1da248a4eb4536d882963b4700 (patch)
treebfbc5fa7a296011944c6c43865432e56584eb05a /archaeological_context_records/forms.py
parentd26ac1d32ae29093590a5d58167ebcab82c8fcd8 (diff)
downloadIshtar-921174babfd04f1da248a4eb4536d882963b4700.tar.bz2
Ishtar-921174babfd04f1da248a4eb4536d882963b4700.zip
Operation - Context records: Surface int -> float
Diffstat (limited to 'archaeological_context_records/forms.py')
-rw-r--r--archaeological_context_records/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py
index d727dae27..409ed0864 100644
--- a/archaeological_context_records/forms.py
+++ b/archaeological_context_records/forms.py
@@ -302,7 +302,7 @@ class RecordFormGeneral(CustomForm, ManageOldType):
excavation_technic = forms.ChoiceField(
label=_("Excavation technique"), choices=[], required=False
)
- surface = forms.IntegerField(
+ surface = forms.FloatField(
required=False,
widget=widgets.AreaWidget,
label=_("Total surface (m2)"),