-
Notifications
You must be signed in to change notification settings - Fork 194
Home
Natán edited this page Oct 19, 2017
·
3 revisions
Django Easy Audit is yet another Django audit log app, hopefully the easiest one. It will let you keep track of every action taken by your users.
Django Easy Audit uses Django signals to listen to the events happenning in your project, such as when a user creates, updates or deletes a registry. This applies to every model of every app in your project.
When any of these events takes place, Django Easy Audit will log it in the model CRUDEvent.
You can query this information in the Django Admin app.
Besides logging CRUD events, Django Easy Audit will log all authentication events (such as when a user logs in, out, or fails to log in) and all the URLs requested in the project. This information is stored in models LoginEvent and RequestEvent.