diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-11-18 10:29:22 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-11-18 10:29:22 +0100 |
commit | 67f4bc08a7191c2558acf5b2c934113a26f7ff7c (patch) | |
tree | dedf77857786ef3e93df354e259482b37ae8b146 /archaeological_finds/forms.py | |
parent | 01392cf2498bbfbc242759174ce201b3b5cd48bc (diff) | |
download | Ishtar-67f4bc08a7191c2558acf5b2c934113a26f7ff7c.tar.bz2 Ishtar-67f4bc08a7191c2558acf5b2c934113a26f7ff7c.zip |
Finds: fix check_date for forms
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) |