I have a model that is firing a post_save signal in the django framework set to run more than one site. What I need to do is to be able to override that signal with a signal that will be defined in the specific site that needs this signal and use the one in the main app as a base.
Or maybe in short I want to be able to write these signals or any other code that is specific to each site in its own place but inheriting from the common code.