[Django]-Django-reversion and related model

9👍

Probably a bit late, but I think with a recent version of reversion you can follow the relations:

Add this line to the end of your model:

reversion.register(Relationship, follow=['from_contact', 'link', 'to_contact'])

Leave a comment