Hello,
Let say your app deals with Book and Author models.
Within Django Admin, you can display a list of currently stored Books.
I
How can you implement the following:
I did tried with list_display_links but it linked to Book edit page, not Author edit page.
I also tried with building custom URLs like <a href="/admin/myapp/author/25/change">Author Name</a>, but it exactly this URL value
instead of showing a link.
(looking at page source code, it seems my browser received an escaped value like "<a> href= ..." instead of expected "<a> href= ...").
Any hint ?
Best regards