views:

22

answers:

1

I want to display a message to admins after they save a particular model, something like "Now enable the series".

I can see how I'd do this if it were a list action (message_user) but I can't see how to do this from the main CRUD form.

Does anyone know how?

Thanks

+3  A: 

You can override save_model method on ModelAdmin so you can add message using message framework after you save your object.

rebus