diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-11-20 12:28:10 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-11-20 12:28:10 +0100 |
commit | 00097d1491b76b50c8e7ee0f35d5e6bfa00bbeea (patch) | |
tree | c2470281db529a89dc9a7a071d94437502b5e80b /archaeological_finds/forms.py | |
parent | 4e75df4a22da7e682224fd14914a9b711b794da5 (diff) | |
download | Ishtar-00097d1491b76b50c8e7ee0f35d5e6bfa00bbeea.tar.bz2 Ishtar-00097d1491b76b50c8e7ee0f35d5e6bfa00bbeea.zip |
Archaeological operations: add virtual and record quality fields (refs #2961)
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r-- | archaeological_finds/forms.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 255afb724..70592bc73 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -70,14 +70,14 @@ class FindForm(forms.Form): volume = FloatField(label=_(u"Volume (l)"), required=False) weight = FloatField(label=_(u"Weight (g)"), required=False) find_number = forms.IntegerField(label=_(u"Find number"), required=False) - mark = forms.CharField(label=_("Mark"), required=False) - checked = forms.ChoiceField(label=_("Check")) + mark = forms.CharField(label=_(u"Mark"), required=False) + checked = forms.ChoiceField(label=_(u"Check")) check_date = forms.DateField( initial=get_now, label=_(u"Check date"), widget=widgets.JQueryDate) - comment = forms.CharField(label=_("Comment"), required=False, + comment = forms.CharField(label=_(u"Comment"), required=False, widget=forms.Textarea) dating_comment = forms.CharField( - label=_("Comment on dating"), required=False, widget=forms.Textarea) + label=_(u"Comment on dating"), required=False, widget=forms.Textarea) image = forms.ImageField( label=_(u"Image"), help_text=mark_safe( _(u"<p>Heavy images are resized to: %(width)dx%(height)d " |