Let's say I want to create a version of an object only in certain conditions, for example when 'status' field of object of class 'mymodel' is being changed to 'submitted'. How can I do this?
class MyModel(AbstractModel):
number = models.CharField(max_length=255)
status = models.CharField(max_length=32)
def save(self, *args, **kwargs) -> bool:
if self.status == 'submitted':
#TODO: create version. HOW??????
return super().save(*args, **kwargs)
Also how can I suppress automatic version creation on every save?
Found a way: