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 Django 1.7 and later, you can do
class HitAdmin(admin.ModelAdmin): list_display_links = None