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
commit316fe3103e7ffeb448886b5d92be3ef73f7e30be (patch)
treeaafda29084b953738dba9a962b773e90da29d152 /archaeological_finds/forms.py
parent8d1b5498ed4ac74509676792702ecf01e07783c9 (diff)
downloadIshtar-316fe3103e7ffeb448886b5d92be3ef73f7e30be.tar.bz2
Ishtar-316fe3103e7ffeb448886b5d92be3ef73f7e30be.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)