Without using signals, within the model save method is it possible to check whether a model is being created created or update? If so how?
def save(self, force_insert=False, force_update=False, *args, **kwargs): """ Override of save() method which is executed the same time the ``pre_save``-signal would be """ models.Model.save(self, *args, **kwargs)
self.id, it's an update. Otherwise it's a new object.