summaryrefslogtreecommitdiff
path: root/archaeological_finds/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r--archaeological_finds/forms.py8
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 "