django-bootstrap3-datetimepicker
django-bootstrap3-datetimepicker copied to clipboard
Cannot select dates before 1970.
trafficstars
Using the current bootstrap3-datetimepicker, I cannot select dates before 1970.
see similar issue with angular package.

It appears newer versions of the bootstrap3-datetimepicker library fix this. I noticed a few pull-requests to integrate newer versions of the bootstrap3-datetimepicker in this package. Are there plans to integrate updated versions?
In the widget options in your form you need to set the start date, like so.
widget=DateTimePicker(options={"format": "DD-MM-YYYY", "pickTime": False, "startDate": '-Infinity'})
-Infinity lets you select any date.