﻿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
21314	Feature request: allow renaming of fields in dicts returned by ValuesQuerySet via kwargs	chris@…	nobody	"It would be convenient to be able to rename the fields returned by ValuesQuerySet by passing keyword arguments to QuerySet.values(), e.g.
{{{
>>> Foo.objects.all().values('id', 'bar__name')
[{'id': 1, 'bar__name': 'Bar'}]

>>> Foo.objects.all().values('id', bar__name='name')
[{'id': 1, 'name': 'Bar'}]
}}}
I think using extra(select=...) and values() can achieve this but with significant verbosity."	New feature	closed	Database layer (models, ORM)	1.4	Normal	duplicate			Unreviewed	0	0	0	0	0	0
