django-bootstrap3-datetimepicker
django-bootstrap3-datetimepicker copied to clipboard
According to [#28095](https://code.djangoproject.com/ticket/28095), the signature of `Widget.build_attrs()` changed from: ```python class Widget(...): # ... def build_attrs(self, attrs, **kwargs): # ... ``` to: ```python class Widget(...): # ... def build_attrs(self, attrs,...
The language option is no longer available in the datetimepicker's js so having it in there caused the widget to not display. I know this isn't a perfect fix as...
The problem is this line: ``` python from django.forms.util import flatatt ``` I believe `flatatt` was moved to `django.forms.utils`.
Updated to version 2.15.0 of moment.js
It would be good to be able to push all the script bits created by django-bootstrap3-datetimepicker to the end of the file, rather than the beginning.
The [current version on PyPI](https://pypi.python.org/pypi/django-bootstrap3-datetimepicker) is old. Please upload version 2.3 Thanks and great job!
Chrome's dev console kept throwing me a nasty error that `xxxx.yyy.size()`was not a function. Turns out calls to `size()` have been deprecated since JQuery 1.8. Replaced with `.length` and it...
#57 The .size() call has been deprecated as of JQ 1.8. A call to .length works and doesn't break the code.
Hi, I am having this issue with the picker: it displays correctly, but the first time you click on a day, the _current_ date and time appear in the field,...