diff options
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 |
commit | fffbad69c962bea546d8193b922b472c886c4023 (patch) | |
tree | bfbc5fa7a296011944c6c43865432e56584eb05a /archaeological_context_records/forms.py | |
parent | f6b335e4a41c185101b58731a023a717567e33fa (diff) | |
download | Ishtar-fffbad69c962bea546d8193b922b472c886c4023.tar.bz2 Ishtar-fffbad69c962bea546d8193b922b472c886c4023.zip |
Operation - Context records: Surface int -> float
Diffstat (limited to 'archaeological_context_records/forms.py')
-rw-r--r-- | archaeological_context_records/forms.py | 2 |
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)"), |