diff options
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r-- | archaeological_finds/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 258b0d34a..255afb724 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -72,7 +72,7 @@ class FindForm(forms.Form): find_number = forms.IntegerField(label=_(u"Find number"), required=False) mark = forms.CharField(label=_("Mark"), required=False) checked = forms.ChoiceField(label=_("Check")) - checked_date = forms.DateField( + check_date = forms.DateField( initial=get_now, label=_(u"Check date"), widget=widgets.JQueryDate) comment = forms.CharField(label=_("Comment"), required=False, widget=forms.Textarea) |