Changes between Initial Version and Version 3 of Ticket #11672


Ignore:
Timestamp:
Aug 9, 2009, 12:54:22 AM (15 years ago)
Author:
Alex Gaynor
Comment:

Please use the preview button.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11672 – Description

    initial v3  
    11If you have a model like:
    2 
     2{{{
    33class Event(models.Model):
    44    ...
    55    end = models.DateTimeField(blank=True, null=True)
    66    ...
    7 
     7}}}
    88and a modelform like:
    9 
     9{{{
    1010from django import forms
    1111from events.models import Event
     
    2323    class Meta:
    2424        model = Event
    25 
     25}}}
    2626submitting an empty field will cause a validation error.
Back to Top