Hey, I have a type Article in which i hold a Type HeaderImage within an OneToOneField-Relationship. When adding an article via contrib.admin interface everything works as expected. But if I edit an existing article, the drop-down list doesn't appear anymore.
class Article(models.Model): title = models.CharField(_("Full Name"), maxlength=255) header = models.OneToOneField(HeaderImage) class HeaderImage(models.Model): picture = models.ImageField(null=True, upload_to='./ images/',core=True) class Admin: pass What is wrong? Did I miss an option? Thanks, Manuel --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---