diff options
Diffstat (limited to 'archaeological_operations')
-rw-r--r-- | archaeological_operations/forms.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index fed48a8ff..2b6e2773e 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -40,6 +40,7 @@ from ishtar_common.models import valid_id, Person, Town, \ organization_type_pk_lazy from ishtar_common.wizards import MultiValueDict +from bootstrap_datepicker.widgets import DatePicker from archaeological_files.models import File import models @@ -526,7 +527,7 @@ class OperationSelect(TableSelect): remains = forms.ChoiceField(label=_(u"Remains"), choices=[]) periods = forms.ChoiceField(label=_(u"Periods"), choices=[]) start_before = forms.DateField(label=_(u"Started before"), - widget=widgets.JQueryDate) + widget=DatePicker) start_after = forms.DateField(label=_(u"Started after"), widget=widgets.JQueryDate) end_before = forms.DateField(label=_(u"Ended before"), |