boglet wrote: > So, the only thing that I can think is that generic views require all > fields for a model to be filed in. Is this correct?
No, views (generic or custom) has nothing to do with this. This is the effect of validation by automatic manipulators[1] (that incidentally are indeed used in generic views). What you're seeing is probably a distinction between 'null=True' and 'blank=True' in field's parameters. The former means "allow NULL in a db table" and the latter means "not required when a default manipulator does form validation". Looks like you didn't include the latter. [1] http://www.djangoproject.com/documentation/forms/ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---