In addition to writing custom django-admin commands, which is pretty well documented, I would like to be able to override an existing command, like manage.py loaddata (fixture)
so I could add some further treatment after that fixtures would have been loaded into my database.
I guess I would have to write a custom command that first calls 'loaddata' and then does its own treatment. Is there a neat way to do things so?
Is there a better solution?