From 141139783f9b15990a87b4429a6d4b7007552a85 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 1 Oct 2015 16:19:10 +0200 Subject: Finds: form field order --- archaeological_finds/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 76337b5ac..deb9ce4dc 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -50,6 +50,7 @@ class FindForm(forms.Form): label = forms.CharField( label=_(u"Free-ID"), validators=[validators.MaxLengthValidator(60)]) + previous_id = forms.CharField(label=_("Previous ID"), required=False) description = forms.CharField(label=_("Description"), widget=forms.Textarea, required=False) base_finds__is_isolated = forms.NullBooleanField( @@ -72,7 +73,6 @@ class FindForm(forms.Form): mark = forms.CharField(label=_("Mark"), required=False) comment = forms.CharField(label=_("Comment"), required=False, widget=forms.Textarea) - previous_id = forms.CharField(label=_("Previous ID"), required=False) image = forms.ImageField( label=_(u"Image"), help_text=mark_safe( _(u"

Heavy images are resized to: %(width)dx%(height)d " -- cgit v1.2.3