I am using a third-party application in my django webapp. But I want to customize the admin view for one of the third-party application models. The setup is more than changing the template change_list.htmlie I will need to add code to talk to an external web service, etc.
However, I do not want to modify a third-party application. Instead, I want to override it. How do I override ModelAdminfor a model that comes from a third-party application?
source
share