A Django app to add date pickers
Project description
Django-datepick is a Django app to add a date, time and datetime pickers to your forms.
Install
Install the app with pip install django-datepick.
Usage with forms
Change the widget used in your forms.py to use the widgets included in this app:
from django import forms
from datepick import widgets
class MyForm(forms.Form):
date_field = forms.DateField(widget=widgets.DateInput)
datetime_field = forms.DateTimeField(widget=widgets.DateTimeInput)
time_field = forms.TimeField(widget=widgets.TimeInput)
Usage with models
Change the field used in your models.py to use the fields from this app:
from django.db import models
from datepick import fields
class MyDateModel(models.Model):
d = fields.DateField()
dt = fields.DateTimeField()
t = fields.TimeField()
Override the admin widget
Same as with any widget, register the model overriding the widget(s) in admin.py:
from datepick.widgets import DateInput, SplitDateTimeWidget, TimeInput
class MyDateModelAdmin(admin.ModelAdmin):
formfield_overrides = {
models.DateField: {"widget": DateInput},
# DON'T models.DateTimeField: {"widget": DateTimeInput}
models.DateTimeField: {"widget": SplitDateTimeWidget}
models.TimeField: {"widget": TimeInput},
}
DateTimeInput doesn’t work in the admin, as it expects a multivalue field.
Why?
Each time you use a date field in Django, the form is a text input. Any frontend would like a datepicker of somekind. Turns out browsers and cellphones already have a datepicker. It looks like this in a browser:
And looks like this in a cellphone:
It doesn’t need Javascript or extra CSS.
More info:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/datetime-local
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
File details
Details for the file django-datepick-0.1.2.tar.gz.
File metadata
- Download URL: django-datepick-0.1.2.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e82c2c421f2bd88b4299aacaca27bd4e9cbd5b7a9f36adeb2e5e07913ed5a96
|
|
| MD5 |
0607a463d9dcfe97ff4d3b538f9d4523
|
|
| BLAKE2b-256 |
eee183c8056c58a458ae660ba2076b02e859ae7aec243fac41f60d1a7a176e34
|