A Django date widget optimised for usability in entering dates of birth
Project description
A Django date widget optimised for usability in entering dates of birth.
This is based on the guidelines put forward by the UK Government Digital Service at https://designnotes.blog.gov.uk/2013/12/05/asking-for-a-date-of-birth/
Usage:
from django import forms from dobwidget import DateOfBirthWidget class PersonModelForm(forms.ModelForm): """ Model form for people. """ class Meta(object): model = Person fields = ['name', 'date_of_birth'] widgets = { 'date_of_birth': DateOfBirthWidget(), }
The DateOfBirthWidget can take an optional order parameter, to make it useful in non-UK jurisdictions:
class Meta(object): model = Person fields = ['name', 'date_of_birth'] widgets = { 'date_of_birth': DateOfBirthWidget(order='MDY'), }
Changes
1.1
Allow attrs of the individual subwidgets to be set using day_attrs, month_attrs and year_attrs.
1.0
Initial release
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for django_dob_widget-1.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3be07ffce9082408c6c15059e48d3b0a509400eddb3d13304c27b1fd6b11d5e2 |
|
MD5 | af4c8cbc0024341f5b2074f8395425c6 |
|
BLAKE2b-256 | 273a747b0c076c59f511b2249b65b9e24a123b3631cfe21e6e2b588c0b7d216c |