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 %}

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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to