summaryrefslogtreecommitdiff
path: root/archaeological_finds/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-01-13 17:15:06 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-01-13 17:15:06 +0100
commit92073870e0090a12272bdd832b522c2516d760ad (patch)
treeaafda29084b953738dba9a962b773e90da29d152 /archaeological_finds/forms.py
parent99eca09d2edad9db6cf95a278ab9cfa8b420bf47 (diff)
downloadIshtar-92073870e0090a12272bdd832b522c2516d760ad.tar.bz2
Ishtar-92073870e0090a12272bdd832b522c2516d760ad.zip
Sheet find: limit to 15 related finds in treatment tables
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r--archaeological_finds/forms.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py
index 11ecf8152..3558b0346 100644
--- a/archaeological_finds/forms.py
+++ b/archaeological_finds/forms.py
@@ -166,17 +166,17 @@ class FindForm(ManageOldType, forms.Form):
required=False, max_length=120
)
get_first_base_find__x = forms.FloatField(label=_(u"X"), required=False)
+ get_first_base_find__y = forms.FloatField(label=_(u"Y"), required=False)
+ get_first_base_find__z = forms.FloatField(label=_(u"Z"), required=False)
+ get_first_base_find__spatial_reference_system = \
+ forms.ChoiceField(label=_(u"Spatial Reference System"), required=False,
+ choices=[])
get_first_base_find__estimated_error_x = \
forms.FloatField(label=_(u"Estimated error for X"), required=False)
- get_first_base_find__y = forms.FloatField(label=_(u"Y"), required=False)
get_first_base_find__estimated_error_y = \
forms.FloatField(label=_(u"Estimated error for Y"), required=False)
- get_first_base_find__z = forms.FloatField(label=_(u"Z"), required=False)
get_first_base_find__estimated_error_z = \
forms.FloatField(label=_(u"Estimated error for Z"), required=False)
- get_first_base_find__spatial_reference_system = \
- forms.ChoiceField(label=_(u"Spatial Reference System"), required=False,
- choices=[])
length = FloatField(label=_(u"Length (cm)"), required=False)
width = FloatField(label=_(u"Width (cm)"), required=False)
height = FloatField(label=_(u"Height (cm)"), required=False)