skillfed

django-bootstrap-datepicker-plus

Bootstrap3/Bootstrap4/Bootstrap5 DatePickerInput, TimePickerInput, DateTimePickerInput, MonthPickerInput, YearPickerInput

django-bootstrap-datepicker-plus v6.0.0 93.5K downloads/30d#13,381 on PyPI221
Permissive license MIT Active released

What it is and what it does

django-bootstrap-datepicker-plus is a Django form widget that provides styled date, time, and datetime input fields compatible with Bootstrap 3, 4, and 5. It includes specialized pickers for dates, times, datetimes, months, and years, all with optional date-range linking. The widget integrates directly into Django model forms and custom forms, allowing developers to replace standard date inputs with interactive calendar and time-picker interfaces that match their Bootstrap theme.

The package is designed for Django projects that already use Bootstrap for styling. It handles JavaScript initialization and configuration automatically, letting you specify picker behavior through widget parameters. Date-range functionality allows linking two pickers so that selecting a start date constrains the end date picker. The widget is configurable for date format, language, and appearance, with support for custom templates if needed.

Use it for:

  • Replace standard Django date inputs in event booking forms with interactive calendar pickers.
  • Implement date-range selection for report filters or booking start/end dates in admin interfaces.
  • Add time-picker widgets to appointment scheduling forms without writing custom JavaScript.
  • Provide month and year pickers for forms that only need coarse-grained date selection.
  • Maintain consistent Bootstrap styling for all form inputs including date/time fields across a Django application.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides Bootstrap-styled date, time, and datetime picker widgets for Django forms, supporting Bootstrap 3, 4, and 5 with date-range selection.

Yes. The package is actively maintained, has no known vulnerabilities, low installation friction, and solves a common Django form problem with minimal configuration. It is production-stable and suitable for any Django project using Bootstrap that needs styled date/time pickers. Install it if your forms require date or time input and you are already using Bootstrap.

Install

django-bootstrap-datepicker-plus on PyPI

pip

pip install django-bootstrap-datepicker-plus

uv

uv add django-bootstrap-datepicker-plus

poetry

poetry add django-bootstrap-datepicker-plus

Installing django-bootstrap-datepicker-plus

Before you install

Low friction installation with a pure Python wheel. Actively maintained with last commit on 2026-08-13 and no reported security vulnerabilities. Depends on Django, pydantic, pydantic-settings, and typing-extensions.

License in practice

MIT license permits unrestricted use, modification, and distribution in both open-source and commercial projects with minimal attribution requirements.

Quickstart

pip install django-bootstrap-datepicker-plus

from django import forms

class EventForm(forms.ModelForm):
    class Meta:
        widgets = {
            "pub_date": DateTimePickerInput(),
        }

Requires Python >= 3.10 and Django >= 2.0; Bootstrap 3, 4, or 5 must be included in your Django template.

Verify before relying

  • Whether pydantic and pydantic-settings are required at runtime or only for development/configuration.
  • Exact Bootstrap version compatibility matrix and any known issues with specific Bootstrap versions.
  • Performance characteristics with large forms or multiple picker instances on a single page.

Package facts

License MIT (permissive)
Python support supports the current Python release (<4,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 4 — Django, pydantic, pydantic-settings, typing-extensions
Maintenance actively maintained — 182 days since the last release
Last repo commit
First released
Downloads 93,497/month — #13,381 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: django_bootstrap_datepicker_plus-6.0.0-py3-none-any.whl

Keywords: django, bootstrap, date-picker, time-picker, datetime-picker, date-range-picker

Development Status :: 5 - Production/StableEnvironment :: Web EnvironmentFramework :: DjangoFramework :: Django :: 2.0Framework :: Django :: 3.0Framework :: Django :: 4.0Framework :: Django :: 5.0Framework :: Django :: 6.0Intended Audience :: DevelopersOperating System :: OS IndependentTopic :: Software Development :: LibrariesTopic :: UtilitiesTyping :: Typed

Tags

django date picker widgetbootstrap datepicker djangodjango datetime pickerdate range picker djangodjango form date inputbootstrap time picker djangodjango calendar widget
django-formsui-widgetdate-picker

More Libraries packages