In my model I have (abbreviated version): class Sponsor(models.Model): name = models.CharField(maxlength=100)
class Admin: pass class Section(models.Model): section = models.CharField(maxlength=200, core=True, blank=True, null=True) sponsor = models.ManyToManyField(Sponsor, filter_interface=models.HORIZONTAL, related_name="section") What I'm trying to do in a template is show all the sections that sponsor is in. It seems to me I should be able to do something like {% for section in sponsor.section_set.all %} but everything I've tried has failed. Looking in admin/docs, there doesn't seem to be relationship between Sponsor and Section, either. (sponsor doesn't show anything about section, and section doesn't show anything about sponsor) I have a template tag that gets all sponsors by section, and that works fine, which is even more baffling to me. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---