#33100: Add a DateInput widget that provides a date picker via the HTML <input
style="date"> element
-----------------------------+--------------------------------------
Reporter: dvg | Owner: nobody
Type: New feature | Status: closed
Component: Forms | Version: 3.2
Severity: Normal | Resolution: duplicate
Keywords: | Triage Stage: Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-----------------------------+--------------------------------------
Comment (by Tim Graham):
I doubt there would be consensus to add unused widgets in Django,
especially when the implementation is so trivial:
{{{#!python
from django import forms
class DateInput(forms.DateInput):
input_type = 'date'
}}}
or even: `DateInput(attrs={'type': 'date'})`
but you could write to the DevelopersMailingList to reach a wider
audience.
--
Ticket URL: <https://code.djangoproject.com/ticket/33100#comment:6>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/068.a7458e159ba7ca78116e0d17021aad5e%40djangoproject.com.