This is mostly me just venting, but why is it if you run a query like this:
a = Model.objects.get(pk=1) Which has an attribute with an output of: a.date = None I pass that to a template, change some other attribute and then attempt to pass it back in: date = request.GET['a.date'] b = Model.object.get(date=date) And I get a ValidationError stating that I must enter a date in a valid format. sigh Shouldn't the output validate as input? Unless someone knows of a good reason for this? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.