Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
2k views

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 ...
5
votes
1answer
850 views

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
2
votes
2answers
91 views

What is the git command to erase all changes and revert to the state of your last commit?

I made a lot of unhelpful changes, and would like to revert to the state my repo was in before any of the changes. Is there a git command for doing that? Thanks!
1
vote
1answer
279 views

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 ...
0
votes
1answer
55 views

django-reversion how to get user-id

I'm using django-reversion for providing history for models I discovered that reversion creates two tables, the table 'reversion_revision' and the 'reversion_version' And in the reversion_revision, ...
0
votes
0answers
56 views

django-reversion - saving user id who made changes in User model (from django auth)

I'd like to use django-reversion for providing change history of users data from Django auth app. The problem is that I want to save id of user, who made that changes. I don't have any idea how to do ...
0
votes
0answers
52 views

django-reversion for google app engine

Is there some app like django-reversion for GAE? Or some solution for providing versioning on datastore rows?
0
votes
1answer
222 views

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

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 ...
0
votes
3answers
872 views

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 ...