From 67f4bc08a7191c2558acf5b2c934113a26f7ff7c Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 18 Nov 2015 10:29:22 +0100 Subject: Finds: fix check_date for forms --- archaeological_finds/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3