summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@proxience.com>2015-10-01 16:19:10 +0200
committerÉtienne Loks <etienne.loks@proxience.com>2015-10-01 16:19:10 +0200
commit141139783f9b15990a87b4429a6d4b7007552a85 (patch)
tree6dc48ccf57ffff4deb4eef2745fb650e95fe69a2
parent6b2a0f786faec09d17aec5270d70b07ce3a6cc4c (diff)
downloadIshtar-141139783f9b15990a87b4429a6d4b7007552a85.tar.bz2
Ishtar-141139783f9b15990a87b4429a6d4b7007552a85.zip
Finds: form field order
-rw-r--r--archaeological_finds/forms.py2
1 files changed, 1 insertions, 1 deletions
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"<p>Heavy images are resized to: %(width)dx%(height)d "