Opened 8 years ago
Last modified 19 months ago
#26761 closed New feature
Add 'help_text' property to methods in ModelAdmin.list_display — at Version 1
Reported by: | Derek Hohls | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Guille López, Carlton Gibson, Carsten Fuchs | Triage Stage: | Unreviewed |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
It would be helpful to allow for a help_text
property to be supplied to a custom field in the admin.
For example:
from django.contrib import admin class AuthorAdmin(admin.ModelAdmin): fields = ('name', 'title', 'view_birth_date') def view_birth_date(self, obj): return obj.birth_date view_birth_date.help_text = 'Authors birthday'
This help text could be displayed via a 'hover over' in the header(s) of the columns in the admin list display.
Change History (1)
comment:1 by , 8 years ago
Description: | modified (diff) |
---|---|
Keywords: | admin removed |
Summary: | Admin - add 'help_text' property to custom fields → Add 'help_text' property to methods in ModelAdmin.list_display |
Triage Stage: | Unreviewed → Accepted |
Note:
See TracTickets
for help on using tickets.