In Django admin, help_text
attribute for individual fields is displayed to give instructions. However, I would like to include a similar feature for the whole models.
In the code, I'm using docstrings to keep general instructions about models, and it would be very useful if I could display it in the Django admin. The perfect way would be to use the first line of a model's docstring on the index pages, and the whole contents on the list and form pages.
Are there any modules/snippets solving that, or should I simply write my own? ;.)