I'm using the django messages framework for user notifications and update_object
to handle saving of forms. When a form is successfully posted the default message is [MyModel] successfully saved
or similar.
I want to change this message to a custom one ("Your changes were saved"), either for all form posts or for every use of update_object.
Is this possible?
Thanks!