I keep getting the same stupid error ... "Enter valid date/time". I've done everything I can think of to let django know that the value in question can be blank ...
# Store the people who need reminding of things class TeleInt (models.Model): call_back = models.DateTimeField( null=True, blank=True ) meeting_date = models.DateTimeField( null=True, blank=True ) # Teleint form class TeleIntForm(ModelForm): call_back = forms.DateTimeField(required=False) meeting_date = forms.DateTimeField(required=False) class Meta: model = TeleInt Yet i still get that error everytime. It's very, very annoying. Anyone got any ideas ? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---