django-auditlog
django-auditlog copied to clipboard
Logging access
As of now Auditlog only handles three of the four CRUD operations. Only the following types of operations are currently covered:
- CREATE
- UPDATE
- DELETE
However, from time to time it's also necessary to log access to objects (READ). This could be implemented, e.g., by means of a signal and a Mixin for usage in DetailViews etc.
I have a unpolished but working version of this. Would this be of interest for the project and is there a chance to get this sort of addition merged?
Thanks!