With the latest from SVN, I'm getting an error in a template, but I can't figure out why...
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)) Here's the (relevant part of the) model: class Obligation(models.Model): organization = models.ForeignKey(Organization, editable=False) And the (relevant part of the) error I get in the browser: Template error In template /home/tobryan1/workspace/dmi/src/dmi/orgs/templates/obligationList.html, error at line 18 Caught an exception while rendering: 'ManyRelatedManager' object is not iterable 18 {% for obligation in oblig_list %} Any ideas what's going on? Thanks, 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 -~----------~----~----~----~------~----~------~--~---