﻿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
13955	capitalization of ForeignKey	jason@…	nobody	"In a Model,
{{{
class Report(models.Model):
    report_number = models.CharField('NCAC report number', primary_key=True)
}}}
I've set the name for the capitalization of the acronym.

When I use the Model as a ForeignKey,
{{{
class RSL(models.Model):
    report_number = models.ForeignKey('Report', null=True)
}}}
the capitalization of the field name is lost, it will show up as 'Ncac report number' in the admin view for the RSL database."		new	contrib.admin	1.2					Unreviewed	0	0	0	0	0	0
