In Django\'s admin, I want disable the links provided on the \"select item to change\" page so that users cannot go anywhere to edit the item. (I am going to limit
In your model admin set:
list_display_links = (None,)
That should do it. (Works in 1.1.1 anyway.)
Link to docs: list_display_links