I used to have two date fields to save the date an object is created and modified and two foreign key fields to save who created or last modified the object.
Now I'm using django-reversion
and I'm able to save all the users who modified the object instead of only the last person.
But how can I print the date the object was created and last modified using django-reversion instead of storing these information in the object itself?