├── .env.defaults ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── assets │ └── readme_images │ │ ├── date-picker.png │ │ ├── datetime-picker.png │ │ └── time-picker.png └── workflows │ ├── build.yml │ ├── deploy.yml │ └── docs.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.rst ├── dev ├── __init__.py ├── manage.py ├── myapp │ ├── __init__.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_insert_demo_event.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── myapp │ │ │ ├── bootstrap3 │ │ │ ├── crispy-form.html │ │ │ ├── custom-form.html │ │ │ ├── custom-formset.html │ │ │ ├── event_filter.html │ │ │ ├── layout.html │ │ │ ├── modal-form-index.html │ │ │ └── modal-form.html │ │ │ ├── bootstrap4 │ │ │ ├── crispy-form.html │ │ │ ├── custom-form.html │ │ │ ├── custom-formset.html │ │ │ ├── event_filter.html │ │ │ ├── layout.html │ │ │ ├── modal-form-index.html │ │ │ └── modal-form.html │ │ │ ├── bootstrap5 │ │ │ ├── crispy-form.html │ │ │ ├── custom-form.html │ │ │ ├── custom-formset.html │ │ │ ├── event_filter.html │ │ │ ├── layout.html │ │ │ ├── modal-form-index.html │ │ │ └── modal-form.html │ │ │ ├── custom-input.html │ │ │ ├── footer.html │ │ │ └── nav-bar.html │ ├── urls.py │ └── views.py └── mysite │ ├── __init__.py │ ├── context_processors.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── docs ├── Getting_Started.rst ├── Makefile ├── Template_Customizing.rst ├── Troubleshooting.rst ├── Usage.rst ├── Walkthrough.rst ├── _static │ └── css │ │ └── custom.css ├── conf.py ├── customization.rst └── index.rst ├── poetry.lock ├── pyproject.toml ├── src └── bootstrap_datepicker_plus │ ├── __init__.py │ ├── _base.py │ ├── _config.py │ ├── py.typed │ ├── schemas.py │ ├── settings.py │ ├── static │ └── bootstrap_datepicker_plus │ │ ├── css │ │ └── datepicker-widget.css │ │ └── js │ │ └── datepicker-widget.js │ ├── templates │ └── bootstrap_datepicker_plus │ │ └── input.html │ └── widgets.py └── tests ├── __init__.py ├── conftest.py ├── pip-constraints.txt ├── test_demo.py ├── test_input_attrs.py ├── test_render.py └── test_warnings.py /.env.defaults: -------------------------------------------------------------------------------- 1 | BOOTSTRAP_DATEPICKER_PLUS_APP_STATIC_URL="bootstrap_datepicker_plus/" -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://www.buymeacoffee.com/monim67'] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/assets/readme_images/date-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/assets/readme_images/date-picker.png -------------------------------------------------------------------------------- /.github/assets/readme_images/datetime-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/assets/readme_images/datetime-picker.png -------------------------------------------------------------------------------- /.github/assets/readme_images/time-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/assets/readme_images/time-picker.png -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/README.rst -------------------------------------------------------------------------------- /dev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/manage.py -------------------------------------------------------------------------------- /dev/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/apps.py -------------------------------------------------------------------------------- /dev/myapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/forms.py -------------------------------------------------------------------------------- /dev/myapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /dev/myapp/migrations/0002_insert_demo_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/migrations/0002_insert_demo_event.py -------------------------------------------------------------------------------- /dev/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/models.py -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap3/crispy-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap3/crispy-form.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap3/custom-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap3/custom-form.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap3/custom-formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap3/custom-formset.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap3/event_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap3/event_filter.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap3/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap3/layout.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap3/modal-form-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap3/modal-form-index.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap3/modal-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap3/modal-form.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap4/crispy-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap4/crispy-form.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap4/custom-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap4/custom-form.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap4/custom-formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap4/custom-formset.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap4/event_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap4/event_filter.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap4/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap4/layout.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap4/modal-form-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap4/modal-form-index.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap4/modal-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap4/modal-form.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap5/crispy-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap5/crispy-form.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap5/custom-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap5/custom-form.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap5/custom-formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap5/custom-formset.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap5/event_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap5/event_filter.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap5/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap5/layout.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap5/modal-form-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap5/modal-form-index.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/bootstrap5/modal-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/bootstrap5/modal-form.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/custom-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/custom-input.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/footer.html -------------------------------------------------------------------------------- /dev/myapp/templates/myapp/nav-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/templates/myapp/nav-bar.html -------------------------------------------------------------------------------- /dev/myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/urls.py -------------------------------------------------------------------------------- /dev/myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/myapp/views.py -------------------------------------------------------------------------------- /dev/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/mysite/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/mysite/context_processors.py -------------------------------------------------------------------------------- /dev/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/mysite/settings.py -------------------------------------------------------------------------------- /dev/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/mysite/urls.py -------------------------------------------------------------------------------- /dev/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/dev/mysite/wsgi.py -------------------------------------------------------------------------------- /docs/Getting_Started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/docs/Getting_Started.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Template_Customizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/docs/Template_Customizing.rst -------------------------------------------------------------------------------- /docs/Troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/docs/Troubleshooting.rst -------------------------------------------------------------------------------- /docs/Usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/docs/Usage.rst -------------------------------------------------------------------------------- /docs/Walkthrough.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/docs/Walkthrough.rst -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | .wy-nav-content { 2 | max-width: unset; 3 | } 4 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/customization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/docs/customization.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/docs/index.rst -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/__init__.py: -------------------------------------------------------------------------------- 1 | """Datepicker widgets for Django.""" 2 | 3 | __version__ = "0.0.0" 4 | -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/src/bootstrap_datepicker_plus/_base.py -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/src/bootstrap_datepicker_plus/_config.py -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/src/bootstrap_datepicker_plus/schemas.py -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/src/bootstrap_datepicker_plus/settings.py -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/static/bootstrap_datepicker_plus/css/datepicker-widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/src/bootstrap_datepicker_plus/static/bootstrap_datepicker_plus/css/datepicker-widget.css -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/static/bootstrap_datepicker_plus/js/datepicker-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/src/bootstrap_datepicker_plus/static/bootstrap_datepicker_plus/js/datepicker-widget.js -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/templates/bootstrap_datepicker_plus/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/src/bootstrap_datepicker_plus/templates/bootstrap_datepicker_plus/input.html -------------------------------------------------------------------------------- /src/bootstrap_datepicker_plus/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/src/bootstrap_datepicker_plus/widgets.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pip-constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/tests/pip-constraints.txt -------------------------------------------------------------------------------- /tests/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/tests/test_demo.py -------------------------------------------------------------------------------- /tests/test_input_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/tests/test_input_attrs.py -------------------------------------------------------------------------------- /tests/test_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/tests/test_render.py -------------------------------------------------------------------------------- /tests/test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monim67/django-bootstrap-datepicker-plus/HEAD/tests/test_warnings.py --------------------------------------------------------------------------------