﻿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
5535	.get() should allow myforeignkey_id lookups	David Cramer	Malcolm Tredinnick	"To allow easy accessibility as you can with .create on foreignkey_id calls, .get should allow the same.

e.g.

{{{
MyModel.objects.create(author_id=1) # Works
MyModel.objects.create(author=Author(id=1)) # Works
MyModel.objects.get(author_id=1) # Doesn't Work
MyModel.objects.get(author=Author(id=1)) # Works
MyModel.objects.get_or_create(author_id=1) # Doesn't Work
}}}"	New feature	closed	Database layer (models, ORM)	dev	Normal	fixed		rkm Simon Litchfield	Ready for checkin	1	1	0	0	0	0
