Reputation: 233
Is there an application for django which tracks CRUD for objects inside a project?
Upvotes: 1
Views: 1004
Reputation: 19495
Check out django-reversion.
It keeps a detailed log of who did what that is viewable from the admin. It also lets you go back and see any older version, and also to restore deleted versions of models. It includes a middleware component to let any model change be logged, even if it wasn't done by the admin tool. It has pretty decent documetnation as well.
Upvotes: 0
Reputation: 99405
If you mean an audit trail for model changes, you could start with AuditTrail. It's a little rough around the edges but I'm not aware of anything else in this area.
Upvotes: 1