django-bootstrap3-datetimepicker icon indicating copy to clipboard operation
django-bootstrap3-datetimepicker copied to clipboard

Results 50 django-bootstrap3-datetimepicker issues
Sort by recently updated
recently updated
newest added

Currently this repository doesn't appear to have any tags for versions. Can you please tag the versions so they can be referenced externally?

Hello, After selecting a date, I can't clear the value, the date still remains. ``` date_from = forms.DateField( required=False, widget=DateTimePicker(options={'format': 'DD/MM/YYYY', 'pickTime': False})) ``` I'm using `django-bootstrap3`.

TimeField return datetime.time as value and use a TimeInput. If we try to use a DateTimeInput we get error: "'datetime.time' object has no attribute 'year'", therefore bug not in Django....

If you're using a models.TimeField() and configuring the widget to something like DateTimePicker(options={"format":"HH:mm", "pickDate":False}). Should work. It does for new objects form, but it does not work for editing an...

Hi, I'm a french guy too, and datetimepicker localization doesn't work for me too. I'm using the picker without customization, and <script type="text/javascript" src="/static/bootstrap3_datetime/js/locales/bootstrap-datetimepicker.fr.js"></script> seams loaded, but l10n does not...

First, let me thank you for this awesome module. I'd like to propose making the Calendar/Clock Glyphicons on the left instead of being on the right, so when ever an...

This is quite strange. ``` now = timezone.localtime(timezone.now()) # US date format because DatePicker wants like this now = now.strftime('%m/%d/%y') ``` Now I define a field in a `Form`: ```...

`startDate` option only understand dates in format `month/day/year`. I have system language defined as Italian, dates are shown accordingly, but startDate MUST be in US format. Is this a desired...

If I click too many times on the arrow to go back one month, the script hangs on a infinite loop. The issue was reported at least twice on Eonasdan's...