﻿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
8190	Utilise help_text for TabularInline in Admin	glenjamin	Alexander Herrmann	"When using !TabularInline in the automatic admin interface the help_text for fields is not displayed anywhere.

I suggest that the information could be displayed as a tooltip on the column heading, like so:

{{{
<th {% if forloop.first %}colspan=""2""{% endif %}>{{ field.label|capfirst|escape }}</th>
}}}
becomes 
{{{
<th {% if forloop.first %}colspan=""2""{% endif %}>
  {{ field.label|capfirst|escape }}
  {% if field.help_text %}<abbr class=""help-text-tooltip"" title=""{{ field.help_text|striptags }}"">?</abbr>{% endif %}
</th>
}}}

and then in the CSS:
{{{
.help-text-tooltip { cursor: help; }
}}}"	New feature	closed	contrib.admin	dev	Normal	fixed		rlaager@… net147@… glicerinu@… django@…	Accepted	1	0	0	1	0	1
