Is it possible to refresh the state of a django object from database? I mean behavior roughly equivalent to:
new_self = self.__class__.objects.get(pk=self.pk
I've found it relatively easy to reload the object from the database like so:
x = X.objects.get(id=x.id)