﻿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
19421	When RelatedModel.__unicode__ fails, InlineModelAdmin are not displayed	benjaoming	nobody	"Example code:

{{{
class RelatedModel:
    def __unicode__(self):
        return self.invalid_property

class SomeInline(admin.TabularInline):
    model = RelatedModel

class SomeAdmin(admin.ModelAdmin):
    inlines = [SomeInline]
}}}

When `RelatedModel.__unicode__` is called, an exception occurs but is silently ignored. The inlines work fine when adding new objects with SomeAdmin, since `__unicode__` is not called here. But when editing an object, the inlines simply disappear!

Expected result: An exception should occur.

Similar experiences here: http://stackoverflow.com/questions/4102241/django-admin-missing-inlines-for-some-records"	Bug	closed	contrib.admin	1.4	Normal	worksforme			Unreviewed	0	0	0	0	1	0
