﻿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
7853	django admin problem used model inheritance	osanha@…	nobody	"for example,

{{{
class Parent(models.Model):
    s = models.ForeignKey('self', null=True, blank=True)
    a = models.TextField()
    
class Child(Parent):
    b = models.TextField()
}}}

1.

When Child create in django admin, Parent reference id is not need. It should be inserted automatically.
But, admin complain it is necessary.

So, after I add one '''dummy Parent''', Child was created successfully with it's own automatically created parent's ID.
So, number of Parent was two.
Every create Child, choice dummy Parent is needed.


2.

like above code.
when delete Child or Parent, error occured about Child's s_id.

----

these error was begined at 0.97-pre-SVN-8007
as I know, previous version is not shown these errors.

"		new	django-admin.py	dev			model inheritance, django admin		Unreviewed	0	0	0	0	0	0
