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
with django 1.6.2 you can do like this:
class MyAdmin(admin.ModelAdmin): def get_list_display_links(self, request, list_display): return []
it will hide all auto generated links.