If you do not want to interfere in obtaining help_text information in the context of a set of forms and modify the edit_inline template, there is a way to capture the verbose_name_plural Meta attribute of your model for this purpose.
The basic idea: if you mark this line as safe, you can insert any html element that comes to your mind. For example, an image element with its title sets the global help text for your model. It might look something like this:
class Meta: verbose_name = "Ygritte" verbose_name_plural = mark_safe('Ygrittes <img src="' + settings.STATIC_URL + \ 'admin/img/icon-unknown.svg" class="help help-tooltip" ' 'width="15" height="15" ' 'title="You know nothing, Jon Snow"/>')
Of course, this is a kind of hacking, but it works quite simply if your model is available only as a built-in model, and you do not need a verbose verbose name for other things (for example, in the list of models in the overview of your application).
source share