Hey, i've got a (simplified) model like this: <start> class Note (models.Model): content = models.TextField(core=True)
class Client (models.Model): other = models.ForeignKey(Note, blank=True) </end> Via the admin interface (using the latest SVN version), i can't create a new Client instance without also choosing or creating a new Note instance. I don't need to have _every_ client have a note, just some (the reason i carved Note off into its own Table). Is this the same for ManyToMany relationships too? Thanks! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---