On 9/9/06, Jay Parlar <[EMAIL PROTECTED]> wrote:
I've found the problem.
Create an Article and Photo object in the admin view. Then, the following in the shell:
>>> from testproject.mytest.models import Photo
>>> Photo.objects.all()[0].article_set.all()
throws Attribute Error
but, if you then run:
>>> from testproject.mytest2.models import Article
>>> Photo.objects.all()[0].article_set.all()
[<Article: asdf>]
Until you import Article, the related objects for Photo aren't populated.
This is a bit of a 'slaps forehead' moment for me - it's kinda obvious if you know the internals. However, I agree that it isn't obvious for end users. This is worth logging as a bug (if you would be so kind) - both in terms of 'this should be documented more clearly', and 'all related objects should automatically populated'. The first is easy to fix; I'm not so sure about the second.
Yours,
Russ Magee %-)
I'll keep playing with it. This really *feels* like I've just screwed
up something somewhere. I'll update if I find a solution.
I've found the problem.
Create an Article and Photo object in the admin view. Then, the following in the shell:
>>> from testproject.mytest.models import Photo
>>> Photo.objects.all()[0].article_set.all()
but, if you then run:
>>> from testproject.mytest2.models import Article
>>> Photo.objects.all()[0].article_set.all()
[<Article: asdf>]
Until you import Article, the related objects for Photo aren't populated.
This is a bit of a 'slaps forehead' moment for me - it's kinda obvious if you know the internals. However, I agree that it isn't obvious for end users. This is worth logging as a bug (if you would be so kind) - both in terms of 'this should be documented more clearly', and 'all related objects should automatically populated'. The first is easy to fix; I'm not so sure about the second.
Yours,
Russ Magee %-)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---