Greetings folks, I've been wrestling with this and I really don't know
what I'm not doing right, so here is where I am:

In basic pseudocode, I have:


models.py:
---------------
class Address(models.Model):
    ... ( street, city, etc)

class Contact(models.Model):
    ...
    address = models.OneToOneField('Address')


admin.py:
-------------

class AddressInline(admin.StackedInline):
    model = models.Address

class ContactAdmin(admin.ModelAdmin):
    inlines = [AddressInline,]


################

However, when I try to add a new Contact I get this error:

<class 'myapp.models.Address'> has no ForeignKey to <class
'myapp.models.Contact'>

It seems like this should work, any ideas what I'm doing wrong or what
the correct way to handle this is?

Thanks,
Tom
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to