Wagtail ModelAdmin read only
Using Wagtails Modeladmin: Is there any way to disable edit & delete options leaving only the inspect view? A possible approach that I can think of, is extending the template, removing the edit & delete buttons and then somehow disable the edit and delete view. Is there any cleaner approach? EDIT: Thanks to Loic answer I could figure out. The PermissionHelper source code was also very helpful to figure out the correct method to override. Complete answer for only showing inspect view class ValidationPermissionHelper(PermissionHelper): def user_can_list(self, user): return True def user_can