From d5031ecf881eaefe7ada1c35228b35a1852dd343 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 10 Apr 2014 13:31:59 -0400 Subject: [PATCH] Fixed #21353 -- Noted that description is ignored for TabularInlines. Thanks nofinator for the report. --- docs/ref/contrib/admin/index.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index d999b11efe..e25326b901 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -377,7 +377,9 @@ subclass:: * ``description`` A string of optional extra text to be displayed at the top of each - fieldset, under the heading of the fieldset. + fieldset, under the heading of the fieldset. This string is not + rendered for :class:`~django.contrib.admin.TabularInline` due to its + layout. Note that this value is *not* HTML-escaped when it's displayed in the admin interface. This lets you include HTML if you so desire.