I'm working with admin and a model as the following: class Publisher(models.Model): name = models.CharField(maxlength=30) [snip]
class Book(models.Model): title = models.CharField(maxlength=100) publisher = models.ForeignKey(Publisher, blank=True) [snip] I can add a Publisher to a Book when I'm adding/modifying books. I can add new books too when I'm editing Publishers if I use inlines in PublisherAdmin class, but I can't add a relation with a Book I added before, such I can with publishers when adding books (ForeignKey) Is it possible with admin tool or must I create a new form/template for it? Greetings, -- Luis Miguel --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---