Hello,
I don't know if it's possible but I'm looking for a simple way to list the versions/revisions of all instances of a Model in a single page.
Let my explain better.
Right now I'm using django-reversion with the basic admin integration (I've followed the Getting Started guide).
From the model page in the admin /admin/<app>/<my_model>/ I can restore the deleted instances, but to see the history of revisions I've to search the correct instance, open it (/admin/<app>/<my_model>/<id>/), click history /admin/<app>/<my_model>/<id>/history, where I can view the edits only for that particular instance.
I'm looking for a way to implement a page like /admin/<app>/<my_model>/history that list all revisions of all instances for my_model.
I basically need to create this sort of report for auditing reasons (list all recent edits and view who made them).
Thanks,
p.