﻿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
2209	Edit inline and models without fields in the admin	anonymous	Adrian Holovaty	"If a model is a ForeignFey for another model with edit_inline=models.STACKED or TABULAR but have no fields itself the admin fails to display the the page at all. Failing with a error page.


{{{

class Cart(models.Model):

    class Admin:
        pass

class CartItem(models.Model):

    cart =  models.ForeignKey(Cart, edit_inline=models.STACKED)
    quantity = models.PositiveIntegerField(core=True)

}}}
"	enhancement	closed	Core (Cache system)	dev	blocker	duplicate			Unreviewed	0	0	0	0	0	0
