reversion

django AuditTrail vs Reversion

I am working on an new web app I need to store any changes in database to audit table(s). Purpose of such audit tables is that later on in a real physical audit we can asecertain what happened in a situation, who edited what and what was the state of db at the time of e.g. a complex calculation. So mostly audit table will be written and ...

Display user name in reference to user id in django template

I expect this is an easy question. For some reason, I don't have a solution yet. I have an object set from django reversion: version_list. Each object in the set has a user id attached to it. How do I grab the user names that correspond to the user ID's? To try to be clearer, if each object in version_list has a name, date, and us...

vestal_versions and htmldiff question of reversion...

I'm guessing there's probably an easier way to do what I'm doing so that the code is less unwieldy. I had trouble understanding how to use the revert_to method... i wanted something where i could call up two different versions at the same time, but this doesn't seem to be the way that vestal_versions works. This code works, but I'm won...

Django-reversion and south compatibility

Does django-reversion work well with south migrations? Are django-reversion and south compatible? Current versions: - reversion - 1.2.1 - south - 0.7.1 ...

Does reversion work for django-cms when page template is changed?

Hi, I use django-cms. I've just changed template for my page which ended with clearing my page (as expected). When I tried to restore old version (by using django reversion app that is suggested to use with django-cms) I realized this is impossible. I mean I have history of changes for my page but it looks like all reversion versions ar...