diff options
Diffstat (limited to 'archaeological_context_records/forms.py')
-rw-r--r-- | archaeological_context_records/forms.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py index 8e865fa5d..f3bbb1b65 100644 --- a/archaeological_context_records/forms.py +++ b/archaeological_context_records/forms.py @@ -124,10 +124,10 @@ class RecordFormGeneral(forms.Form): validators=[validators.MaxLengthValidator(200)]) description = forms.CharField(label=_(u"Description"), widget=forms.Textarea, required=False) - length = forms.IntegerField(label=_(u"Length (cm)"), required=False) - width = forms.IntegerField(label=_(u"Width (cm)"), required=False) - thickness = forms.IntegerField(label=_(u"Thickness (cm)"), required=False) - depth = forms.IntegerField(label=_(u"Depth (cm)"), required=False) + length = forms.IntegerField(label=_(u"Length (m)"), required=False) + width = forms.IntegerField(label=_(u"Width (m)"), required=False) + thickness = forms.IntegerField(label=_(u"Thickness (m)"), required=False) + depth = forms.IntegerField(label=_(u"Depth (m)"), required=False) unit = forms.ChoiceField(label=_("Unit"), required=False, choices=[]) location = forms.CharField( label=_(u"Location"), widget=forms.Textarea, |