﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
12167	related objects should not trigger db query on reverese related lookup	Alexander Schepanovski	nobody	"I'm having smth like:
{{{
    class Place(models.Model):
        pass

    class Flank(models.Model):
        place = models.ForeignKey(Place, related_name='flanks')
}}}
loading place from db:
{{{
    p = Place.objects.get(pk=...)
    flanks = p.flanks.all()
    flanks[0].place  # Should not trigger db query !
}}}
Also, it {{{flanks[0].place}}} should be the same as {{{p}}}.
I realize this issue relates to #17, but nobody knows when that will be solved. And fixing this seems easy."		closed	Uncategorized	1.1		wontfix			Unreviewed	0	0	0	0	0	0
