Opened 15 years ago
Last modified 15 years ago
#11672 closed
using forms.DateField or forms.DateTimeField causes validation error on fields that should be optional — at Version 3
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Forms | Version: | 1.1 |
Severity: | Keywords: | modelform date | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
If you have a model like:
class Event(models.Model): ... end = models.DateTimeField(blank=True, null=True) ...
and a modelform like:
from django import forms from events.models import Event class EventForm(forms.ModelForm): end = forms.DateTimeField(('%m/%d/%Y %H:%M',), widget=forms.SplitDateTimeWidget( date_format='%m/%d/%Y', time_format='%H:%M', ), required=False ) class Meta: model = Event
submitting an empty field will cause a validation error.
Change History (3)
comment:2 by , 15 years ago
Can someone throw away this ticket?
... I'm going to make a properly formatted one
Note:
See TracTickets
for help on using tickets.