On Wed, 2007-05-30 at 09:50 +0800, Russell Keith-Magee wrote:
> On 5/30/07, Todd O'Bryan <[EMAIL PROTECTED]> wrote:
> >
> > Caught an exception while rendering: 'ManyRelatedManager' object is not
> > iterable
> >
> > 18 {% for obligation in oblig_list %}
> >
> > Any ideas what's going on?
> 
> The Manager isn't iterable, but the query sets it produces are.
> 
> You're looking for:
> 
> {% for obligation in oblig_list.all %}
> 
But didn't I already do that in the view? Or am I not allowed to do
that?

def obligation_list(request, org_name):
    org = Organization.objects.get(slug=org_name)
--> oblig_list = org.obligation_set.all()
    return render_to_response('obligationList.html',
                              {'oblig_list': oblig_list, 'organization':
org},
                              RequestContext(request))

Todd


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

Reply via email to