I've done a few configurations (inlines, filters, order_by...) to the Django admin interface but I would like to change the behavior of the save button when you add a new item. Take a look at my interface (It is in French, but it should be easy to understand prix:price - enregistrer:save)
I have three price field, one for the current item price and two other for previous prices. What I want to do is when the current price is changed and saved, the data from price goes to price2 and price2 to price3 automatically. Like that, I always see what the older prices were.
And maybe one more thing : is it possible that when save(enregistrer) is clicked, I can return to a particular page, and not to the list of all objects?
Thanks for helping!