On 8/8/06, Sarcastic Zombie <[EMAIL PROTECTED]> wrote:
>
> Oh man, I'm really grateful for the help. And for writing Django in the
> first place.
>
> Here's the fun part of my problem! It works fine in the ./manage.py
> shell. My view was loading the agency with an id of 141, so for
> consistency, we'll use that same object.
>
> >>> from commund.financial_database.models import *
> >>> a = Agency.objects.get(id=141)
> >>> a
>
> <Agency: Potomac Insurance>
>
> >>> a.agent_set.all()
>
> [<Agent: Unknown, Agent - Potomac Insurance (Tax ID Unconfirmed)>]
>

What happens when you keep going? Try doing the loop here. Perhaps
something like:

>>> for agent in a.agent_set.all():
...         print agent
...




-- 
----
Waylan Limberg
[EMAIL PROTECTED]

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to