summaryrefslogtreecommitdiff
path: root/archaeological_finds/forms_treatments.py
diff options
context:
space:
mode:
authorValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2017-04-14 12:20:12 +0200
committerValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2017-04-14 12:20:12 +0200
commitfbbe1c8585935272919cd7c2f3d1c57fd5f72c50 (patch)
treea849f93e19201606b401844579e72d5ca2034baa /archaeological_finds/forms_treatments.py
parentb0870b7c9773a74cf3f3a7a8d30a09e67b89a931 (diff)
downloadIshtar-fbbe1c8585935272919cd7c2f3d1c57fd5f72c50.tar.bz2
Ishtar-fbbe1c8585935272919cd7c2f3d1c57fd5f72c50.zip
Treatment form: reordering of some fields
Diffstat (limited to 'archaeological_finds/forms_treatments.py')
-rw-r--r--archaeological_finds/forms_treatments.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_finds/forms_treatments.py b/archaeological_finds/forms_treatments.py
index 58429f4c9..52971bf6d 100644
--- a/archaeological_finds/forms_treatments.py
+++ b/archaeological_finds/forms_treatments.py
@@ -129,12 +129,12 @@ class BaseTreatmentForm(ManageOldType, forms.Form):
validators=[valid_id(Container)], required=False)
external_id = forms.CharField(
label=_(u"External ref."), max_length=200, required=False)
- comment = forms.CharField(label=_(u"Comment"),
- widget=forms.Textarea, required=False)
- description = forms.CharField(label=_(u"Description"),
- widget=forms.Textarea, required=False)
goal = forms.CharField(label=_(u"Goal"),
widget=forms.Textarea, required=False)
+ description = forms.CharField(label=_(u"Description"),
+ widget=forms.Textarea, required=False)
+ comment = forms.CharField(label=_(u"Comment"),
+ widget=forms.Textarea, required=False)
start_date = forms.DateField(label=_(u"Start date"), required=False,
widget=widgets.JQueryDate)
end_date = forms.DateField(label=_(u"Closing date"), required=False,