Home > Article > Backend Development > How to get current user in save method of a django model?
I have the following django model:
class Listing(models.Model) STATUS_CHOICES = [ ('available', 'Available'), ('rented', 'Rented'), ('unavailable', 'Unavailable'), ('fake', 'Fake'), ] id = models.AutoField(primary_key=True) title = models.CharField(max_length=200) description = models.TextField() status = models.CharField(max_length=12, choices=STATUS_CHOICES, default='available') def save(self, *args, **kwargs): ## if self.status == 'fake' and ......: raise PermissionDenied("Cannot save listing with…
The above is the detailed content of How to get current user in save method of a django model?. For more information, please follow other related articles on the PHP Chinese website!