Add help_text for search field in admin.py

前端 未结 4 1688
暗喜
暗喜 2020-12-17 18:46

How can I add help_text in django for a search field I am using in admin.py as:

class ProfileAdmin(admin.ModelAdmin):

    list_display = (\'First_Name\',\'L         


        
4条回答
  •  渐次进展
    2020-12-17 19:19

    You could either override Admin template admin/search_form.html to add help text;
    Or load a javascript file, which could find the dom node to insert the help text, in ProfileAdmin.Media, check the doc.

提交回复
热议问题