ModelAdmin.get_list_display_links(request, list_display)
[source]
The get_list_display_links
method is given the HttpRequest
and the list
or tuple
returned by ModelAdmin.get_list_display()
. It is expected to return either None
or a list
or tuple
of field names on the changelist that will be linked to the change view, as described in the ModelAdmin.list_display_links
section.
Please login to continue.