﻿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
13440	in discussion of ForeignKey(), mention the reverse relationship that is created	Chris Curvey	nobody	"On this page:  http://docs.djangoproject.com/en/dev/ref/models/fields/#foreignkey

Mention that creating a foreign key creates a backref as well.  For example;

{{{
class Car(models.Model):
    manufacturer = models.ForeignKey('Manufacturer')
    # ...

class Manufacturer(models.Model):
    # ...
}}}

will silently create an attribute of manufacturer called ""car_set"" that contains a list of all the cars associated with that manufacturer."		closed	Documentation	1.2-beta		duplicate			Unreviewed	0	0	0	0		
