﻿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
18549	Admin should not use verbose_name_plural for OneToOne field	Roy Smith	Tim McCurrach	"Do something like the following:

{{{
class Foo(Model):
     i = IntegerField()
     bar = OneToOneField(""Bar"")

class FooInline(admin.TabularInline):
    model = Foo

class Bar(Model):
    i = Integerfield()

class BarAdmin(admin.ModelAdmin):
    inlines = [FooInline]

admin.site.register(Foo, FooAdmin)
admin.site.register(Bar)
}}}

When you edit a Bar in the admin, the formset section for entering a Foo will be labeled ""Foos"" (plural).  Since it's a one-to-one mapping, it should be labeled ""Foo"" (singular).
"	Bug	closed	contrib.admin	dev	Normal	fixed		harph 4glitch@…	Ready for checkin	1	0	0	0	0	0
