Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tracking changes to Django Model instances

When you create or modify an object instance in Django's admin, a changelog entry is created. This is really nice for fairly obvious reasons.

However my model's instances created by a normal user outside of the admin interface. No changelog is recorded to note its creation (not a huge issue) but I would like to track edits the user makes.

I also want to show the user this full log (user+admin edits) in the frontend so I need a way to pull the changelog out.

My question: how? Is there a one-line switch I can flick to enable full logging or do I have to dig in and do something on my user's edit form logic?

like image 957
Oli Avatar asked Feb 25 '10 14:02

Oli


1 Answers

django-reversion is an app designed to help with that.

like image 95
Ofri Raviv Avatar answered Nov 05 '22 21:11

Ofri Raviv