diff options
author | Valérie-Emma Leroux <emma@iggdrasil.net> | 2017-04-14 12:20:12 +0200 |
---|---|---|
committer | Valérie-Emma Leroux <emma@iggdrasil.net> | 2017-04-14 12:20:12 +0200 |
commit | 4cf5dea4e7b3279789aa0db07cb4253337c7c372 (patch) | |
tree | a849f93e19201606b401844579e72d5ca2034baa | |
parent | 69b5bb17321d0983f980e1b1d2a7c5992b658452 (diff) | |
download | Ishtar-4cf5dea4e7b3279789aa0db07cb4253337c7c372.tar.bz2 Ishtar-4cf5dea4e7b3279789aa0db07cb4253337c7c372.zip |
Treatment form: reordering of some fields
-rw-r--r-- | archaeological_finds/forms_treatments.py | 8 |
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, |