I have added this extra message in my model admin and basically I want to remove the default one. Is there someone that can help me to do this?
My actual message:
def save_model(self, request, obj, form, change):
messages.Success(request, "...")
obj.save()
The default one kinda sucks!
Thank you!

Not the most elegant solution, but you can always override the
response_addandresponse_changemethods of theModelAdminclass, removing theself.message_usercalls, and if you don't want all that clutter on youradmin.pyfile, you can just create aSilentModelAdminin a helper file where you override those methods and remove the messages you don't want to be shown.