From 1e428c411afbd2d0c4e1480abcf5a89cdac761b1 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 20 Nov 2015 12:28:10 +0100 Subject: Archaeological operations: add virtual and record quality fields (refs #2961) --- archaeological_finds/forms.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'archaeological_finds') 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"

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