Bootstrap3 compatible datetimepicker for Django projects.
Project description
- This package uses Bootstrap v3 datetimepicker widget version 2 provided by the following project:
- The correct formatting options for dates can be found here:
It works only with Bootstrap3. If you are using Bootstrap2 in your Django project, check out this: https://github.com/zokis/django-bootstrap-datetimepicker
Install
Run pip install bootstrap3-datetime
Add 'bootstrap3_datetime' to your INSTALLED_APPS
Example
forms.py
from bootstrap3_datetime.widgets import DateTimePicker
from django import forms
class ToDoForm(forms.Form):
todo = forms.CharField(
widget=forms.TextInput(attrs={"class": "form-control"}))
date = forms.DateField(
widget=DateTimePicker(options={"format": "YYYY-MM-DD",
"pickTime": False}))
reminder = forms.DateTimeField(
required=False,
widget=DateTimePicker(options={"format": "YYYY-MM-DD HH:mm",
"pickSeconds": False}))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bootstrap3-datetime-2.4.tar.gz
(108.4 kB
view details)
File details
Details for the file bootstrap3-datetime-2.4.tar.gz.
File metadata
- Download URL: bootstrap3-datetime-2.4.tar.gz
- Upload date:
- Size: 108.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65e123c3105309fc15d973188585fd9d6ad968df50ff82874d38f93f4b01db21
|
|
| MD5 |
4233ef177d11f28a12efe239c94f0b43
|
|
| BLAKE2b-256 |
02b4155e91001ca58869e83ccb334d0cee33c5b38d5e0141934c6785da344ab4
|