I'would like to store history of my model changes. I found django-reversion extension and it looks quite nice but I have no idea how to intergrate it with tastypie.
My example models:
class Author(models.Model):
name = models.CharField(max_length=15)
surname = models.CharField(max_length=20)
def __unicode__(self):
return self.name
class Book(models.Model):
title = models.CharField(max_length=30)
author = models.ForeignKey(Author)
isbn = models.CharField(max_length=30)
def __unicode__(self):
return self.title
aand resources:
class ResourceAuthor(ModelResource):
class Meta:
queryset = Author.objects.all()
resource_name = "author"
class ResourceBook(ModelResource):
author = fields.ForeignKey(ResourceAuthor,'author', full = True)
class Meta:
queryset = Book.objects.all()
resource_name = "book"
Saving/updating is working, so each action creates some kind of snapshot. To get history of model:
reversion.get_for_object(model)
and my question is, how to create rest api for history?
I would be glad if one of you could share with experiences in this topic.