﻿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
21353	'description' key in InlineModelAdmin fieldsets is ignored	Greg	nobody	"The [https://docs.djangoproject.com/en/1.5/ref/contrib/admin/#inlinemodeladmin-options InlineModelAdmin supports fieldsets], just like ModelAdmin objects. However, if you add a 'description' key, it does not appear on the rendered form.

For example:

{{{
class BookInline(admin.TabularInline):
    model = Book
    fieldsets = (
        (None, {
            'description': 'These are the related books.',
            'fields': ('name', 'date'),
        }),
    )

}}}

I would expect to see 'These are the related books.' in the tabular inline section for Books, but I don't.

(I suspect other fieldset keys are ignored in inlines, too. I haven't tried those.)

I am will share a branch with a fix for this on GitHub soon."	Bug	closed	contrib.admin	dev	Normal	fixed			Accepted	1	0	0	1	0	0
