views:

60

answers:

1

Hi there,

With django admin, we have an history of who altered an object and when. I would like to add an "old value", "new value" to this to be able to roll back if needed.

Plus I would like every modification made to my objects (also outside of admin) to be recorded as well.

The final objective is to be able to trace every modification of every object in the models and be able to roll back if needed.

Do you know if such a module already exists.

If not what would be the good start point ?

Thanks

+3  A: 

I haven't personally tried it but it sounds like you should check out django-reversion.

Baresi
hey, that sounds nice, i'll have a deeper look
Ghislain Leveque
+1 I have personally used it and it's pretty slick.
T. Stone
Well I just tested it on a mini test-project and it seems nice. We will see when I'll try to implement it on my main project but thanks a lot !
Ghislain Leveque