﻿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
167	ForeignKey should also take string arg instead of class name	Manuzhai	Adrian Holovaty	"Some ForeignKey relationships might be circular, due to the somewhat linear fashion of source code, this doesn't work so well. For example, you could have a Person and an Address, with a Person living at an Address as well as the Address having an owner who is, incidentally, a Person. It would be nice if 

{{{ 
ForeignKey('Person')
}}}

would be supported as well as

{{{
ForeignKey(Person)
}}}

but according to jacobkm, that might not work. In which it would be

{{{
ForeignKey('app.people')
}}}

to make it easier on the black magic scripts to find the right model."	defect	closed	Metasystem		normal	duplicate			Unreviewed	0	0	0	0	0	0
