Skip to main content

A Django date widget optimised for usability in entering dates of birth

Project description

django-dob-widget

Build Status

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.2.0

  • Add support for Django 1.10

1.1.3

  • Handle far future dates that raise OverflowError when given to datetime.date

1.1.2

  • Do not clear inputs if an invalid date is entered

1.1.1

  • Bug fix around character-based input

1.1.0

  • Allow attrs of the individual subwidgets to be set using day_attrs, month_attrs and year_attrs.

1.0.0

  • Initial release

Contributors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-dob-widget-1.2.0.tar.gz (3.1 kB view details)

Uploaded Source

Built Distribution

django_dob_widget-1.2.0-py2.py3-none-any.whl (3.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-dob-widget-1.2.0.tar.gz.

File metadata

  • Download URL: django-dob-widget-1.2.0.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.13.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.17

File hashes

Hashes for django-dob-widget-1.2.0.tar.gz
Algorithm Hash digest
SHA256 ae7e03b15945fdf109d2e41a9f35607f5c4eadb28e8b8dbf800bab444eeabb2d
MD5 fc861f8d0364a8dc5bdda6187b59921c
BLAKE2b-256 9e05060ca1fdd6c79f0726848dfe20d030958c51c899cd2e98e575d038346189

See more details on using hashes here.

File details

Details for the file django_dob_widget-1.2.0-py2.py3-none-any.whl.

File metadata

  • Download URL: django_dob_widget-1.2.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 3.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.13.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.17

File hashes

Hashes for django_dob_widget-1.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1bb06eb5828b420805e550732f800aed8ca90cc5b262a5fbb6b6dc8c988ab076
MD5 c26b3b39726e36afc8cf3d4bb5e5605a
BLAKE2b-256 83fa11b9ebfbaa0ed6d297843039aab1648fdf9e89fd2c8ebb2bc02321898b16

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page