James Bennett wrote: > The fact that the model defines some default > values doesn't actually mean you can leave those out -- default values > are *only* used when displaying a form to the user, they're not > "auto-filled" by Django in other cases.
James, the code says otherwise (or I am really looking in a wrong place). django/db/models/base.py in Model.__init__ around line 116 actually does: val = kwargs.pop(f.attname, f.get_default()) setattr(self, f.attname, val) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---