我有大约50个行政模型,模型Admin作为基类。 现在我想删除所有50个模式的特点。 我认为有两种方式。
- Redefine has_delete_permission method to return false and remove delete_selected action for all the 50 models (lot of work).
- Do the same thing as mentioned above in django.contrib.admin.AdminModel. which means altering the source code.
我不想改变源码。 是否有其他办法可以采取上述两种方式?